Array (Json function): Difference between revisions

From m204wiki
Jump to navigation Jump to search
Line 14: Line 14:


==Usage notes==
==Usage notes==
<ul>
<li>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 (Json function)|Add function]].</li>
<li>The added Json objects can be a mix of Json object types.</li>
</ul>
==Examples==
==Examples==
==See also==
==See also==
{{Template:Json:Array footer}}
{{Template:Json:Array footer}}

Revision as of 20:41, 17 February 2015

Create an Array JSON object (Json class)

[Introduced in Model 204 7.6]


This page is under construction.

Syntax

%json = [%(Json):]Array[( [itemList])]

Syntax terms

%jsonJson 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.

Examples

See also