JSON - Scoped
-
- UpdatedJan 30, 2025
- 1 minute read
- Yokohama
- API reference
The JSON script include provides scoped methods to create JSON objects from a string, and to turn JSON objects into strings.
For scoped applications, the JSON API uses static methods that call the JavaScript ES5 native JSON object.
Note: Use the global keyword with JSON method calls in scoped scripts, for
example,
global.JSON.stringify()
. Not using the global keyword could result
in an error message, such as ScopedRhinoObjectWrapper: not a wrappable type:
com.glide.script.FieldGlideDescriptor.Scoped JSON - parse(String str)
Creates an object or primitive type from a JSON formatted string.
Name | Type | Description |
---|---|---|
str | String | JSON formatted string. |
Type | Description |
---|---|
Object | Object created from the specified string. |
Example
Output:
Scoped JSON - stringify(Object jsonObject)
Creates a string from a JSON object.
Name | Type | Description |
---|---|---|
jsonObject | Object | JSON object to turn into a string. |
Type | Description |
---|---|
String | JSON-formatted string. |
Example
Output: