Array (Json function): Difference between revisions
Jump to navigation
Jump to search
No edit summary |
|||
Line 1: | Line 1: | ||
{{Template:Json:Array subtitle}} | {{Template:Json:Array subtitle}} | ||
This | This function creates a Json object of the array type. | ||
==Syntax== | ==Syntax== | ||
{{Template:Json:Array syntax}} | {{Template:Json:Array syntax}} |
Revision as of 21:12, 17 February 2015
Create an Array JSON object (Json class)
[Introduced in Model 204 7.6]
This function creates a Json object of the array type.
Syntax
%json = [%(Json):]Array[( [itemList])]
Syntax terms
%json | Json object |
---|---|
[%(Json):] | The optional class name in parentheses denotes a virtual constructor. See "Usage notes", below, for more information about invoking a virtual constructor. |
itemList | Zero or more Json objects (including null) that become the arrays original items. |
Usage notes
- If the array is to be dynamically populated, it might be easiest to simply specify Array with no parameters and ad items with the Add function.
- The added Json objects can be a mix of Json object types.