JavaScript Object Notation (JSON) is a lightweight data exchange format and is often used with JavaScript, Ajax, and RESTful web services.
799
votes
7answers
197k 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 ...
282
votes
25answers
94k 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 ...
257
votes
23answers
140k 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 ...
222
votes
14answers
34k views
191
votes
12answers
156k 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();
...
141
votes
27answers
41k views
How to pretty-print JSON script?
Is there a (*nix) command-line script to format JSON in human-readable form?
Basically, I want it to transform the following:
{ foo: "lorem", bar: "ipsum" }
... into something like this:
{
...
112
votes
8answers
51k views
What's the best C++ JSON parser?
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
110
votes
16answers
76k views
Serialize form to JSON with jQuery
How do I serialize all elements of my form to a JSON object?
I'd like to have some way of automatically building a JSON object from my form, without having to loop over each element. I do not want a ...
95
votes
5answers
30k views
What does a Ajax call response like 'for (;;); { json data }' mean?
I found this kind of syntax being used on Facebook for Ajax calls. I'm confused on the for (;;); part in the beginning of response. What is it used for?
This is the call and response:
GET ...
89
votes
20answers
6k views
Why is Everyone Choosing JSON Over XML for jQuery?
I thought XML is highly portable and can be used as a mini database. I have seen XML used everywhere. I even see large companies switching over to JSON. Even Microsoft has integrated support for JSON. ...
82
votes
7answers
44k views
Loop through Json object
I have a JSON object like the following
var p =
{
"p1": "value1",
"p2": "value2",
"p3": "value3"
};
Now I want to loop through all p elements (p1,p2,p3...) and get ...
82
votes
6answers
52k 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 ...
78
votes
7answers
23k views
JSON datetime between Python and JavaScript
I want to send a datetime.datetime object in serialized form from Python using JSON and de-serialize in JavaScript using JSON. What is the best way to do this?
78
votes
4answers
49k views
correct HTTP header for json file
I've searched around and found two different ways to define Content-type for JSON file loaded with php.
header('Content-type: text/json');
header('Content-type: application/json');
which one should ...
74
votes
4answers
4k 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 ...
68
votes
15answers
14k views
What are the pros and cons of XML and JSON?
We're an XML shop (we use both XMPP and RSS/Atom feeds a lot, so I guess we have a little or no choice). Yet, I keep hearing about people who "hate" XML and sometimes refuse to use APIs who can only ...
68
votes
8answers
13k 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 ...
68
votes
12answers
32k 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?
66
votes
9answers
2k views
Why is it a bad practice to return generated HTML instead of JSON? Or is it?
It is quite easy to load HTML content from your custom URLs/Web services using JQuery or any other similar framework. I've used this approach many times and till now and found the performance ...
66
votes
13answers
22k 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 ...
63
votes
13answers
7k 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.
62
votes
10answers
15k views
What is JSON and why would I use it?
Sorry for asking what may well seem like a dumb question. I've looked on wikipedia and Googled it and read the official documentation, but I've still not got to the point where I really understand ...
56
votes
10answers
19k 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:
...
55
votes
7answers
60k 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 ...
53
votes
8answers
34k 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 ...
52
votes
6answers
7k 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 ...
52
votes
7answers
27k views
How do I serialize a C# anonymous type to a JSON string?
I'm attempting to use the following code to serialize an anonymous type to JSON:
var serializer = new DataContractJsonSerializer(thing.GetType());
var ms = new MemoryStream();
...
52
votes
8answers
55k 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 ...
51
votes
6answers
37k 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?
49
votes
9answers
12k 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.
49
votes
5answers
12k views
How can I parse JSON in Google App Engine?
I'd like to parse a JSON string into an object under Google App Engine (python). What do you recommend? Something to encode/stringify would be nice too. Is what you recommend built in, or a library ...
49
votes
13answers
21k views
Is there a decent JSON editor around?
I'm looking for a JSON editor that is able to do syntax checking and outline view.
Browser-based editors are not an option as they are clumsy for editing lots of local files. Eclipse plug-in would be ...
46
votes
3answers
20k 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 ...
46
votes
11answers
17k 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 ...
45
votes
5answers
3k views
Why are we using “({ })” in jQuery?
Why are we using ({ })?
Is it delegate?
What does it mean to use this syntax?
What are we wrapping with it?
For example:
$.ajaxSetup ({ // <-- THIS
error: fError,
compelete: fComp,
...
44
votes
3answers
32k views
JSON stringify missing from jQuery 1.4.1?
Apparently jQuery has the ability to decode a given object or string into a JSON object. However, I have a JS object that I need to POST back to the server and I find no utility in jQuery that wraps ...
43
votes
14answers
14k views
Is there an extension to reindent JSON in Notepad++?
I need Notepad++ to take a json string from this
{"menu": {"id": "file","value": "File","popup": {"menuitem": [{"value": "New", "onclick": "CreateNewDoc()"},{"value": "Open", "onclick": ...
42
votes
4answers
12k views
Python 2.5: JSON module
I would like to use Python's JSON module. It was only introduced in Python 2.6 and I'm stuck with 2.5 for now. Is the particular JSON module provided with Python 2.6 available as a separate module ...
41
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
...
40
votes
8answers
5k views
Can you use a trailing comma in a JSON object?
When manually generating a JSON object or array, it's often easier to leave a trailing comma on the last item in the object or array. For example, code to output from an array of strings might look ...
38
votes
7answers
24k views
How can I deserialize JSON to a simple Dictionary<string,string> in ASP.NET?
I have a simple key/value list in JSON being sent back to ASP.NET via POST. Example:
{ "key1": "value1", "key2": "value2"}
I AM NOT TRYING TO DESERIALIZE INTO STRONGLY-TYPED .NET OBJECTS
I simply ...
37
votes
4answers
32k 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 = ...
35
votes
7answers
40k views
How to iterate over a JSON structure?
I have the following JSON structure:
[ {"id":"10", "class": "child-of-9"}, {"id":"11", "classd": "child-of-10"}];
how to iterate over it using jquery or javascript?
35
votes
10answers
19k views
Converting .NET DateTime to JSON
My webs service is returning a DateTime to a jQuery call. The service returns the data in this format:
/Date(1245398693390)/
How can I convert this into a JavaScript-friendly date?
34
votes
10answers
11k views
JSON serialization of Google App Engine models
I've been search for quite a while with no success. My project isn't using Django, is there a simple way to serialize App Engine models (google.appengine.ext.db.Model) into JSON or do I need to write ...
34
votes
5answers
19k views
How can I post an array of string to ASP.NET MVC Controller without a form?
I am creating a small app to teach myself ASP.NET MVC and JQuery, and one of the pages is a list of items in which some can be selected. Then I would like to press a button and send a List (or ...
33
votes
6answers
17k views
In Rails, how do you render JSON using a view?
Suppose you're in your users controller and you want to get a json response for a show request, it'd be nice if you could create a file in your views/users/ dir, named show.json and after your ...
32
votes
2answers
20k views
How do I parse JSON with Ruby on Rails?
I'm looking for a simple way to parse JSON, extract a value and write it into a db in Rails.
Explicitly what I'm looking for is a way to extract a shortUrl from the JSON returned from the bit.ly API: ...
32
votes
16answers
67k 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: ...
31
votes
8answers
39k 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 ...