json.path.add: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
m (Conversion script moved page json.path.add to Json.path.add without leaving a redirect: Converting page title to first-letter uppercase) |
(No difference)
|
Revision as of 22:34, 9 February 2023
json.path.add() Function
• Introduced in version 1.5.5
Add an element to a nested JSON Array. Additional information on how to specify the path is available here.
Usage
json.path.add(json, path, value)
Parameters
json
- The json element in which the JSON Array is nested.path
- The path to the JSON Array.value
- The value to add to the array.
Examples
Suppose we have the following nested json:
[h:troll = json.set("{}", "name", "Troll", "HP", 75, "Attacks", json.append("Claw", "Bite"))]
[h:orc = json.set("{}", "name", "Orc", "HP", 13, "Attacks", json.append("Sword", "Punch"))]
[h:monsters = json.set("{}", "Troll", troll, "Orc", orc)]
To add a new attack to our Orc, such as a "Bow" attack, we could type
[monsters = json.path.add(monsters, "Orc.Attacks", "Bow")]