Replaces an item at a given index in the JSON array by object.
%JSON_ArraySetObject( INT in handle, INT in index, INT in object )
None
Function replaces an item at a given index in the JSON array by object.
Exception is thrown if handle to parent JSON array is invalid, handle to object is invalid or index is out of range.
INT _arr _arr := %JSON_CreateArray() INT _tmp _tmp := %JSON_CreateObject() %JSON_ArraySetLength(_arr, 1) %JSON_ArraySetObject(_arr, 1, _tmp) %JSON_FreeArrayHandle(_arr) %JSON_FreeObjectHandle(_tmp)
Related pages:
JSON format manipulation functionsFunction arguments - types
Pridať komentár
Pridať komentár