JSON.Parse: Difference between revisions

From NSB App Studio
Jump to navigation Jump to search
Line 25: Line 25:
== Example (JavaScript) ==
== Example (JavaScript) ==
<pre>
<pre>
// JSON.Parse Example
// JSON.parse Example
myObject=JSON && JSON.Parse(s, reviver) || $.parseJSON(s, reviver);
myObject=JSON && JSON.parse(s, reviver) || $.parseJSON(s, reviver);
NSB.Print("myObject.a:" + myObject.a + " myObject.b:" + myObject.b + "<br>");
NSB.Print("myObject.a:" + myObject.a + " myObject.b:" + myObject.b + "<br>");



Revision as of 01:20, 28 May 2013

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.

A handy tool to look at JSON strings is located at http://www.jsoneditoronline.org.

Example (Basic)

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

Example (JavaScript)

// JSON.parse Example
myObject=JSON && JSON.parse(s, reviver) || $.parseJSON(s, reviver);
NSB.Print("myObject.a:" + myObject.a + " myObject.b:" + myObject.b + "<br>");

reviver = function(key, value) {
  if(key=="a" && TypeName(Value)== "Integer") {
     return value.toString(); //If value is a number, we want to change it to string.
 } else {
     return value;
  }
}

Output

myObject.a:12355 myObject.b:4

Related Items

JSON.Stringify