JSON Class
The JSON module adds support for serializing JavaScript objects into JSON strings and parsing JavaScript objects from strings in JSON format.
The JSON namespace is added to your YUI instance including static methods Y.JSON.parse(..) and Y.JSON.stringify(..).
The functionality and method signatures follow the ECMAScript 5 specification. In browsers with native JSON support, the native implementation is used.
The json
module is a rollup of json-parse
and
json-stringify
.
As their names suggest, json-parse
adds support for parsing
JSON data (Y.JSON.parse) and json-stringify
for serializing
JavaScript data into JSON strings (Y.JSON.stringify). You may choose to
include either of the submodules individually if you don't need the
complementary functionality, or include the rollup for both.
Item Index
Methods
- customTransport static
- dateToString static deprecated
- defaultTransport static
- notify
- parse static
- stringify static
Properties
- _default static
- charCacheThreshold static
- transports static
Methods
customTransport
-
id
Create a custom transport of type and return it's object
Parameters:
-
id
StringThe id of the transport to create.
dateToString
-
d
Serializes a Date instance as a UTC date string. Used internally by stringify. Override this method if you need Dates serialized in a different format.
Parameters:
-
d
DateThe Date to serialize
Returns:
stringified Date in UTC format YYYY-MM-DDTHH:mm:SSZ
defaultTransport
-
[id]
Parameters:
-
[id]
String optionalThe transport to set as the default, if empty a new transport is created.
Returns:
The transport object with a send
method
notify
-
event
-
transaction
-
config
Fired from the notify method of the transport which in turn fires the event on the IO object.
parse
-
s
-
reviver
Parse a JSON string, returning the native JavaScript representation.
Parameters:
Returns:
the native JavaScript representation of the JSON string
stringify
-
o
-
w
-
ind
Converts an arbitrary value to a JSON string representation.
Objects with cyclical references will trigger an exception.
If a whitelist is provided, only matching object keys will be included. Alternately, a replacer function may be passed as the second parameter. This function is executed on every value in the input, and its return value will be used in place of the original value. This is useful to serialize specialized objects or class instances.
If a positive integer or non-empty string is passed as the third parameter, the output will be formatted with carriage returns and indentation for readability. If a String is passed (such as "\t") it will be used once for each indentation level. If a number is passed, that number of spaces will be used.
Parameters:
Returns:
JSON string representation of the input
Properties
charCacheThreshold
Number
static
Number of occurrences of a special character within a single call to stringify that should trigger promotion of that character to a dedicated preprocess step for future calls. This is only used in environments that don't support native JSON, or when useNativeJSONStringify is set to false.
So, if set to 50 and an object is passed to stringify that includes strings containing the special character \x07 more than 50 times, subsequent calls to stringify will process object strings through a faster serialization path for \x07 before using the generic, slower, replacement process for all special characters.
To prime the preprocessor cache, set this value to 1, then call
Y.JSON.stringify("(all special characters to
cache)");
, then return this setting to a more conservative
value.
Special characters \ " \b \t \n \f \r are already cached.
Default: 100