Description
Adds the child item of JsonArrayItem type in the JSON generator object.
Applies to
JSONGenerator objects
Syntax
objectname.AddItemArray ( ParentItemHandle )
objectname.AddItemArray ( ParentItemHandle, Key )
Argument |
Description |
---|---|
objectname |
The name of the JSONGenerator object in which you want to add an item |
ParentItemHandle |
A long whose value is the handle of the parent item of JsonArrayItem type |
Argument |
Description |
---|---|
objectname |
The name of the JSONGenerator object in which you want to add an item |
ParentItemHandle |
A long whose value is the handle of the parent item of JsonArrayItem type |
Key |
A string whose value is the key of the child item |
Return value
Long.
Returns the handle of the new child item if it succeeds and -1 if an error occurs. If any argument's value is null, the method returns null.
Example 1
This example creates an array root item and adds an array child item. The result is [[101,102,103]].
JsonGenerator lnv_JsonGenerator lnv_JsonGenerator = Create JsonGenerator // Create an array root item Long ll_RootArray = lnv_JsonGenerator.CreateJsonArray() // Add an array child item Long ll_ChildArray = lnv_JsonGenerator.AddItemArray(ll_RootArray) lnv_JsonGenerator.AddItemNumber(ll_ChildArray, 101) lnv_JsonGenerator.AddItemNumber(ll_ChildArray, 102) lnv_JsonGenerator.AddItemNumber(ll_ChildArray, 103)
Example 2
This example creates an object root item and adds an array child item. The result is {"id":[101,102,103]}.
JsonGenerator lnv_JsonGenerator lnv_JsonGenerator = Create JsonGenerator // Create an object root item Long ll_RootObject = lnv_JsonGenerator.CreateJsonObject() // Add an array child item Long ll_ChildArray = lnv_JsonGenerator.AddItemArray(ll_RootObject, "id") lnv_JsonGenerator.AddItemNumber(ll_ChildArray, 101) lnv_JsonGenerator.AddItemNumber(ll_ChildArray, 102) lnv_JsonGenerator.AddItemNumber(ll_ChildArray, 103)
See also