JSON is a lightweight data exchange format and is often used with javascript and RESTful web-services. Its syntax is a subset of the JavaScript object literal notation. { "names": { "first": "John", "last": "Doe" }, "languages": [ "javascript", "python", "lisp" ] } See also jsonp ...
323
votes
23answers
178k views
A better Java JSON library? [closed]
Can anyone recommend a good Java JSON library (better than the one from http://json.org/)? I've also found JSON-lib, which definitely looks like an improvement, but I'm wondering if there is anything ...
155
votes
19answers
101k views
Convert form data to JS object with jQuery
How do I convert all elements of my form to a JS object?
I'd like to have some way of automatically building a JS object from my form, without having to loop over each element. I do not want a ...
265
votes
12answers
205k views
Serializing to JSON in jQuery
I need to serialize an object to JSON. I'm using jQuery. Is there a "standard" way to do this?
My specific situation: I have an array defined something like this:
var countries = new Array();
...
1215
votes
11answers
255k views
The *right* JSON content type?
Right I've been messing around with JSON for some time, just pushing it out as text and it hasn't hurt anybody (I know of), but I'd like to start doing things properly.
I have seen so many purported ...
70
votes
8answers
43k views
Converting JSON to Java
I want to be able to access properties from a JSON string within my Java action method. The string is available by simply saying myJsonString = object.getJson(). Below is an example of what the string ...
379
votes
26answers
122k views
How to format a JSON date?
I'm taking my first crack at Ajax with jQuery. I'm getting my data onto my page, but I'm having some trouble with the JSON data that is returned for Date data types. Basically, I'm getting a string ...
44
votes
8answers
58k views
Sending and Parsing JSON in Android
In the application I am developing, I would like to send messages in the form of JSON objects to a Django Server and parse the JSON response from the server and populate a custom listview.
From the ...
97
votes
4answers
6k views
Please explain JSONP
I don't understand jsonp.
I understand JSON. I don't understand JSONP. Wikipedia's document on JSON is (was) the top search result for JSONP. It says JSONP or "JSON with padding" is a JSON ...
79
votes
6answers
87k views
Parse JSON in C#
I'm trying to parse some JSON data from the Google AJAX Search API. I have this URL and I'd like to break it down so that the results are displayed. I've currently written this code, but I'm pretty ...
8
votes
7answers
5k views
How do I build a JSON object to send to an AJAX WebService?
After trying to format my JSON data by hand in javascript and failing miserably, I realized there's probably a better way. Here's what the code for the web service method and relevant classes looks ...
86
votes
11answers
40k views
Best JSON library to use when developing an iPhone application? [closed]
There are a few JSON libraries/frameworks available for Objective-C developers, but I wanted to get the opinion of the resident gurus here on which one is the best, and why.
Any thoughts?
78
votes
11answers
22k views
Deserialize JSON into C# dynamic object?
Is there a way to deserialize JSON content into a C# 4 dynamic type? It would be nice to skip creating a bunch of classes in order to use the DataContractJsonSerializer.
20
votes
9answers
21k views
JQuery ajax cross domain
I am fed up with this problem. Here is two pages, test.php and servertest.php.
test.php
<script src="scripts/jq.js" type="text/javascript"></script>
<script>
...
1
vote
1answer
2k views
Linking from a column value in jqGrid to a new page using GET
I have created a jqGrid that contains some fields such as:
job_id, name, etc
What I am trying to do is make so that when the click on the value in the job_id column, it will redirect them to:
...
30
votes
5answers
15k views
JSON and Core Data on the iPhone
I have a core data object graph (consisting of two entities linked by a to-many relationship).
I was curious, as a relatively inexperienced iPhone developer, whether anyone could recommend an ...
143
votes
8answers
66k views
What's the best C++ JSON parser? [closed]
I've seen the C++ JSON links on www.json.org but would like some feedback on which parser people prefer - for reliability, speed and ease of use.
Thanks, Sam
58
votes
3answers
30k views
WCF - How do I return clean JSON?
I am trying to return some JSON from a WCF service. This service simply returns some content from my database. I can get the data. However, I am concerned about the format of my JSON. Currently, the ...
17
votes
3answers
32k views
How to send a JSON object over Request with Android?
I want to send the following JSON text {"Email":"aaa@tbbb.com","Password":"123456"} to a web service and read the response. I know to how to read JSON. The problem is that the above JSON object must ...
15
votes
3answers
24k views
how to parse json in javascript
i want to parse json to string in javascript. the response something like
var response = '{"result":true,"count":1}';
how i can get the result value and count from this json
90
votes
12answers
27k views
Preferred method to store PHP arrays (json_encode vs serialize)
I need to store a multi-dimensional associative array of data in a flat file for caching purposes. I might occasionally come across the need to convert it to JSON for use in my web app but the vast ...
61
votes
12answers
25k views
Binary Data in JSON String. Something better than Base64
The JSON format natively doesn't support binary data. The binary data has to be escaped so that it can be places into a string element (i.e. zero or more Unicode chars in double quotes using backslash ...
41
votes
7answers
40k views
JSON encode MySQL results
How do I use the JSON_encode function with mysql query results, do I need to iterate through the rows or can I just apply it to the entire results object?
-3
votes
4answers
343 views
Parsing a JSONobject in java [closed]
I have a String that contains JSON Object that is of type
[{"text":"sometext1","answers":"someansweroption1","id":1,"correct":2},
...
38
votes
4answers
37k views
How to post an array of complex objects with JSON, jQuery to ASP.NET MVC Controller?
My current code looks like the following. How can I pass my array to the controller and what kind of parameters must my controller action accept?
function getplaceholders() {
var placeholders = ...
73
votes
8answers
77k views
Safely turning a JSON string into an object
Given a string of JSON data, how can you safely turn that string into a JavaScript object?
Obviously you can do this unsafely with something like...
var obj = eval("(" + json + ')');
...but that ...
22
votes
5answers
27k views
Problems with jQuery getJSON using local files in Chrome
I have a very simple test page that uses XHR requests with jQuery's $.getJSON and $.ajax methods. The same page works in some situations and not in others. Specificially, it doesn't work in Chrome on ...
4
votes
1answer
3k views
jqGrid does not populate with data
I am trying to populate a jqGrid with data from a web service. I have looked at the jqGrid code and documentation thoroughly. I need another set of eyes to look at the code below and tell me if I'm ...
1
vote
1answer
3k views
Load data from Webservice (asmx) to jqgrid. Please help me
I create a Sample to test jqgrid.
GetDataService.asmx:
using System;
using System.Collections;
using System.ComponentModel;
using System.Data;
using System.Linq;
using System.Web;
using ...
117
votes
7answers
75k views
How to list the properties of a javascript object
Say I create an object thus:
var myJSONObject =
{"ircEvent": "PRIVMSG", "method": "newURI", "regex": "^http://.*"};
What is the best way to retrieve a list of the property names? i.e. I ...
31
votes
6answers
42k views
ASP.NET MVC How to pass JSON object from View to Controller as Parameter
I have a complex JSON object which is sent to the View without any issues (as shown below) but I cannot work out how Serialize this data back to a .NET object when it is passed back to the controller ...
87
votes
9answers
27k views
Can I set an unlimited length for maxJsonLength in web.config?
I am using the autocomplete feature of jQuery. When I try to retrieve the list of more then 17000 records (each won't have more than 10 char length), it's exceeding the length and throws the error:
...
33
votes
4answers
10k views
Override to_json in Rails 2.3.5
Update:
This issue was not properly explored. The real issue lies within render :json.
The first code paste in the original question will yield the expected result. However, there is still a ...
14
votes
6answers
25k views
iPhone/iOS JSON parsing tutorial
As a learning experience, I want to make an iphone application that calls a webserver/webservice, retrieves a JSON response, and uses that response to populate the rows of a UITableView (assuming it ...
27
votes
8answers
17k views
Any good libraries for parsing JSON in Classic ASP? [closed]
I've been able to find a zillion libraries for generating JSON in Classic ASP (VBScript) but I haven't been to find ANY for parsing.
I want something that I can pass a JSON string and get back a ...
38
votes
19answers
84k views
jQuery won't parse my JSON from AJAX query
I'm having difficulty parsing some JSON data returned from my server using jQuery.ajax()
To perform the AJAX I'm using:
$.ajax({
url: myUrl,
cache: false,
dataType: "json",
success: ...
27
votes
4answers
10k views
JSON: why are forward slashes escaped?
The reason for this "escapes" me.
JSON escapes the forward slash, so a hash {a: "a/b/c"} is serialized as {"a":"a\/b\/c"} instead of {"a":"a/b/c"}.
Why?
2
votes
3answers
4k views
Can I return JSON from an .asmx Web Service if the ContentType is not JSON?
I would like to post a form using ajax and jquery to a .asmx webservice and return the value from the webservice as JSON.
I'm using ASP.NET 4.0. I know that in order to return JSON from a webservice ...
38
votes
11answers
21k views
JavaScript data formatting/pretty printer
I'm trying to find a way to 'pretty print' a JavaScript data structure in a human-readable form for debugging.
I have a rather big and complicated data structure being stored in JS and I need to ...
3
votes
3answers
1k views
Creating a JSON Store For iPhone
We have loads of apps where we fetch data from remote web services as JSON and then use a parser to translate that into a Core-Data model.
For one of our apps, I'm thinking we should do something ...
69
votes
13answers
8k views
When to prefer JSON over XML?
My requirement is just to display a set of values retrieved from database on a spread. I am using jquery.
83
votes
8answers
18k views
Comparison of JSON Parser for Objective-C (JSON Framework, YAJL, TouchJSON, etc)
As far as I know, there are three JSON Parsers for Objective-C, JSON Framework, YAJL, and Touch JSON. Then, These three would have their own characteristics.
For example:
YAJL can be used as a SAX ...
70
votes
6answers
47k views
ASP.NET MVC controller actions that return JSON or partial html
I am trying to create controller actions which will return either JSON or partial html depending upon a parameter. What is the best way to get the result returned to an MVC page asynchronously?
53
votes
5answers
2k views
Why do people put code like “throw 1; <dont be evil>” and “for(;;);” in front of json responses?
Google returns json like this:
throw 1; <dont be evil> { foo: bar}
and Facebooks ajax has json like this:
for(;;); {"error":0,"errorSummary": ""}
Why do they put code that would stop
...
39
votes
4answers
18k views
Jackson Vs. Gson [closed]
After searching through some existing libraries for JSON, I have finally ended up with these two:
Jackson
Google GSon
I am a bit partial towards GSON, but word on the net is that GSon suffers from ...
26
votes
9answers
9k views
Web-based JSON editor that works like property explorer with AJAXy input form
Background: This is a request for something that may not exist yet, but I've been meaning to build one for a long time. First I will ask if anyone has seen anything like it yet.
Suppose you have an ...
69
votes
6answers
10k views
`json` and `simplejson` module differences in Python
I have seen many a projects use simplejson module than the in builtin Standard Library json.
Also there seem to be many different simplejson modules
What are the advantages of simplejson and which ...
26
votes
4answers
23k views
How to let an ASMX file output JSON
I created an ASMX file with a code behind file. It's working fine, but it is outputting XML.
However, I need it to output JSON. The ResponseFormat configuration doesn't seem to work. My code-behind ...
22
votes
4answers
22k views
JavaScriptSerializer.Deserialize - how to change field names
Summary: How do I map a field name in JSON data to a field name of a .Net object when using JavaScriptSerializer.Deserialize ?
Longer version: I have the following JSON data coming to me from a ...
11
votes
2answers
14k views
JQuery, Spring MVC @RequestBody and JSON - making it work together
I would like to have a bidirectional JSON to Java serialization
I'm using successfully the Java to JSON to JQuery path... (@ResponseBody)
e.g.
@RequestMapping(value={"/fooBar/{id}"}, ...
31
votes
3answers
11k views
Post data to JsonP
Is it possible to post data to JsonP? Or does all data have to be passed in the querystring as a GET request?
I have alot of data that I need to send to the service, cross domain, and it is too large ...