xgo/docs/stdlib-json.md

30 lines
875 B
Markdown
Raw Normal View History

# Module - "json"
```golang
json := import("json")
```
## Functions
2019-12-20 22:40:38 +03:00
- `decode(b string/bytes) => object`: Parses the JSON string and returns an
object.
- `encode(o object) => bytes`: Returns the JSON string (bytes) of the object.
Unlike Go's JSON package, this function does not HTML-escape texts, but, one
can use `html_escape` function if needed.
- `indent(b string/bytes) => bytes`: Returns an indented form of input JSON
bytes string.
- `html_escape(b string/bytes) => bytes`: Return an HTML-safe form of input
JSON bytes string.
## Examples
```golang
json := import("json")
encoded := json.encode({a: 1, b: [2, 3, 4]}) // JSON-encoded bytes string
indentded := json.indent(encoded) // indented form
html_safe := json.html_escape(encoded) // HTML escaped form
2020-03-04 17:53:38 +03:00
decoded := json.decode(encoded) // {a: 1, b: [2, 3, 4]}
```