Personal notes on software development.
For Java technologies check my dedicated site

Pages

JSON (an acronym for JavaScript Object Notation).
The JSON format is often used for serializing and transmitting structured data over a network connection. It is primarily used to transmit data between a server and web application, serving as an alternative to XML.

Despite its relationship to JavaScript, it is language-independent, with parsers available for virtually every programming language.

The JSON filename extension is .json.

Related articles:
Mastering JSON ( JavaScript Object Notation )
JSON in JavaScript
AJAX - JSON vs. XML - Benchmark
Object to JSON String - Because AJAX data is sent as an encoded string, some preparation of JSON data must be made before it can be sent to the server. Fortunately, Douglas Crockford at JSON.org has released a set of very useful routines which will convert any Javascript data type into a JSON string which can be easily sent to the server.
The toJSONString() method to convert the object into a string which is ready to be sent to the server.



http://w3schools.invisionzone.com/index.php?showtopic=24753

No comments:

Post a Comment