Questions tagged as 'json'

0
answers

Highcharts jQuery.getJSON

I want to build a graph using Highchar, where I get Json, but when I create the graph, for example: "column", the bars are not displayed. I loop because the data is received from a table with several columns. Here is the code for better under...
asked by 08.09.2015 / 04:17
2
answers

How to pass variables as a parameter on a JSON object in Swift?

I am making a POST call with Swift using the Alamofire library. The service call works, but I need to verify the email and the password typed by the user. How do I pass variables email and senha into parameters...
asked by 21.10.2015 / 22:07
0
answers

I can not modify the encoding of my charts in Google Chart

I'm trying to change the encoding of my chart I made using Google Charts with data coming from a json file. I already changed contentType of $.ajax() but nothing happened. The graph is displayed correctly, the only defect is the le...
asked by 06.10.2015 / 17:40
0
answers

@SkipSerialization

I have a problem with serializing my classes. I'm having a circular reference problem, so I'm trying to handle this by adding the @SkipSerialization annotation in the class to prevent it from being serialized. However, this does not seem to be w...
asked by 11.09.2015 / 04:37
1
answer

Problem with function return

Well, I have a json code that looks for logged-in user information, and later, I have another code that looks for all the sectors registered in the system. The function normally returns the information, but when return the desired value in the f...
asked by 26.07.2015 / 20:42
0
answers

Change Context Webservice using Visual Studio 2013

I created a webservice using visual studio 2013, mysql using database first, until then okay, but when I put it to generate in json, the answer stays as follows:    string xmlns="http://digits.com.br/" >   {"PAR_ID_23": 2, "PAR_RAZAO_SOCIA...
asked by 16.09.2015 / 16:42
1
answer

Update form to work when deploying Ajax

This is Ajax that I want to implement. When the form is submitted, it displays a GIF to show that it is loading, and then depending on the result, an alert appears with a message written by json_encode , and some. $("#form").submit(funct...
asked by 09.08.2015 / 14:57
0
answers

Send json from iphone to a Bluetooth device

I need to create an app that sends json information (login and password) to a bluetooth device, which will query a database and see if the login and password are correct. I have this app for android and am wanting to develop for iOS.     
asked by 13.06.2015 / 07:25
0
answers

Send input value file via ajax without form

I need to upload images inside a form. I would like to know if it is possible to pass parameters from the image upload form via ajax outside the general form? If so, how would I do it? I tried some forms, but none worked. NOTE: I am using val...
asked by 13.08.2015 / 14:03
0
answers

JsonBackReference and JsonManagedReference, bidirectional between two classes

I have the following DTOs public class UserDTO { private String name; @JsonManagedReference("phone") private UserPhoneDTO phone; } public class PhoneDTO { private String number; @JsonManagedReference("user") priva...
asked by 05.06.2015 / 20:39