JSON.Parse: Difference between revisions

From NSB App Studio
Jump to navigation Jump to search
No edit summary
Line 3: Line 3:
== Description ==
== Description ==


Json.Parse converts a string created by JSON.STRINGIFY into an NS Basic object. It is useful for interchanging data with other systems and for saving objects to localStorage and databases. ''string'' is the string to be converted. ''reviver'' is an optional function name that can be used to do some processing of the data while being parsed.
Json.Parse converts a string created by JSON.STRINGIFY into an object. It is useful for interchanging data with other systems and for saving objects to localStorage and databases. ''string'' is the string to be converted. ''reviver'' is an optional function name that can be used to do some processing of the data while being parsed.


== Example ==
== Example ==

Revision as of 12:52, 2 September 2012

Json.Parse (string[, reviver])

Description

Json.Parse converts a string created by JSON.STRINGIFY into an object. It is useful for interchanging data with other systems and for saving objects to localStorage and databases. string is the string to be converted. reviver is an optional function name that can be used to do some processing of the data while being parsed.

Example

Rem Json.Parse Example
myObject=Json.Parse(s, reviver)
Print "myObject.a:" & myObject.a & " myObject.b:" & myObject.b
 
Function reviver(key, value)
  If key="a" and TypeName(Value)= "Integer" Then 
    reviver=CStr(value) 'If value is a number, we want to change it to string.
  Else
    reviver=value
  End If
End Function

Output

myObject.a:12355 myObject.b:4

Related Items

Json.Stringify