A parser to read/write JSON safely. Create a new instance with the OpenLayers.Format.JSON constructor.
OpenLayers. Format.JSON | A parser to read/write JSON safely. |
Properties | |
indent | {String} For “pretty” printing, the indent string will be used once for each indentation level. |
space | {String} For “pretty” printing, the space string will be used after the “:” separating a name/value pair. |
newline | {String} For “pretty” printing, the newline string will be used at the end of each name/value pair or array item. |
Constructor | |
OpenLayers. Format.JSON | Create a new parser for JSON. |
Functions | |
read | Deserialize a json string. |
write | Serialize an object into a JSON string. |
read: function( json, filter )
Deserialize a json string.
json | {String} A JSON string |
filter | {Function} A function which will be called for every key and value at every level of the final result. Each value will be replaced by the result of the filter function. This can be used to reform generic objects into instances of classes, or to transform date strings into Date objects. |
{Object} An object, array, string, or number .
write: function( value, pretty )
Serialize an object into a JSON string.
value | {String} The object, array, string, number, boolean or date to be serialized. |
pretty | {Boolean} Structure the output with newlines and indentation. Default is false. |
{String} The JSON string representation of the input value.
Deserialize a json string.
read: function( json, filter )
Serialize an object into a JSON string.
write: function( value, pretty )