Vidíte historickú verziu tejto stránky. Pozrite si aktuálnu verziu.
Porovnať s aktuálnou verziou Zobraziť históriu stránky
Verzia 1 Ďalej »
Get array in field from JSON object.
INT %JSON_ObjectGetArray( INT in handle, TEXT in field )
Funcion get array in field from JSON object.
Exception is thrown if object at index is not array, handle to JSON object is invalid or field does not exists.
INT _obj _obj := %JSON_ObjectFromString('{"Array":[1,2,3]}') INT _arr _arr := %JSON_ObjectGetArray(_obj, "Array") %JSON_FreeObjectHandle(_obj) %JSON_FreeArrayHandle(_arr)
Related pages:
JSON format manipulation functionsFunction arguments - types