32
votes
4answers
6k 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 …
23
votes
11answers
2k 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.
22
votes
9answers
1k 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 …
19
votes
8answers
5k views
A better Java JSON library?
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 …
17
votes
11answers
822 views
Why is JSON important?
I've only recently heard about JSON (Javascript Object Notation).
Can anybody explain why it is considered (by some websites/blogs/etc) to be important?
We already have XML, why is JSON better (apart …
17
votes
2answers
5k 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
15
votes
2answers
5k views
How to remove a property from a javascript object
Say I create an object thus:
var myJSONObject =
{"ircEvent": "PRIVMSG", "method": "newURI", "regex": "^http://.*"};
What is the best way to remove the property 'regex'? i.e. I would like to …
14
votes
8answers
490 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 …
14
votes
5answers
2k views
Can I comment a JSON file?
Can I comment a JSON file? If so, how?
13
votes
7answers
1k views
Should my MVC controller really know about JSON?
The JsonResult class is a very useful way to return Json as an action to the client via AJAX.
public JsonResult JoinMailingList(string txtEmail)
{
// ...
return new JsonResult()
…
13
votes
12answers
6k views
How to format 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 that is returned for Date data types. Basically, I'm getting a string back …
13
votes
12answers
2k views
What is the most flexible serialization for .NET objects, yet simple to implement?
I would like to serialize and deserialize objects without having to worry about the entire class graph.
Flexibility is key. I would like to be able to serialize any object passed to me without …
12
votes
16answers
670 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. …
12
votes
7answers
2k 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 …
12
votes
4answers
4k 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?
