Vidíte historickú verziu tejto stránky. Pozrite si aktuálnu verziu.
Porovnať s aktuálnou verziou Zobraziť históriu stránky
« Predchádzajúce Verzia 3 Aktuálny »
Check if there is value in given field in JSON object.
BOOL %JSON_ObjectIsValue( INT in handle, TEXT in field )
@TRUE if in given field is value of type BOOL, INT, REAL, TEXT or invalid value, else @FALSE.
Function check if there is value of type BOOL, INT, REAL, TEXT or invalid value in given field in JSON object.
Exception is thrown if handle to JSON object is invalid or field does not exists.
INT _obj _obj := %JSON_ObjectFromString('{"Count":5}') BOOL _is_value _is_value := %JSON_ObjectIsValue(_obj, "Count") %JSON_FreeObjectHandle(_obj)
Related pages:
JSON format manipulation functionsFunction arguments - types