jsoneditor/docs/usage.md

107 lines
2.2 KiB
Markdown
Raw Permalink Normal View History

2013-05-04 17:54:03 +08:00
# Usage
### Install
Install via npm:
2013-05-04 17:54:03 +08:00
npm install jsoneditor
## Load
2013-05-04 18:02:20 +08:00
To implement JSONEditor in a web application, load the javascript and css file
2013-05-04 17:54:03 +08:00
in the head of the HTML page:
```html
<link href="jsoneditor/dist/jsoneditor.min.css" rel="stylesheet" type="text/css">
<script src="jsoneditor/dist/jsoneditor.min.js"></script>
2013-05-04 17:54:03 +08:00
```
## Use
In the body, create a div element with an id and a size:
2013-05-04 17:54:03 +08:00
```html
<div id="jsoneditor" style="width: 400px; height: 400px;"></div>
```
After the page is loaded, load the editor with javascript:
```js
var container = document.getElementById("jsoneditor");
var options = {
mode: 'tree'
};
var editor = new JSONEditor(container, options);
2013-05-04 17:54:03 +08:00
```
2013-05-04 18:02:20 +08:00
To set JSON data in the editor:
2013-05-04 17:54:03 +08:00
```js
var json = {
"Array": [1, 2, 3],
"Boolean": true,
"Null": null,
"Number": 123,
"Object": {"a": "b", "c": "d"},
"String": "Hello World"
};
editor.set(json);
```
2013-05-04 18:02:20 +08:00
To get JSON data from the editor:
2013-05-04 17:54:03 +08:00
```js
var json = editor.get();
```
## Full Example
```html
<!DOCTYPE HTML>
<html lang="en">
2013-05-04 17:54:03 +08:00
<head>
<!-- when using the mode "code", it's important to specify charset utf-8 -->
<meta charset="utf-8">
<link href="jsoneditor/dist/jsoneditor.min.css" rel="stylesheet" type="text/css">
<script src="jsoneditor/dist/jsoneditor.min.js"></script>
2013-05-04 17:54:03 +08:00
</head>
<body>
<p>
<button onclick="setJSON();">Set JSON</button>
<button onclick="getJSON();">Get JSON</button>
</p>
<div id="jsoneditor" style="width: 400px; height: 400px;"></div>
<script>
2013-05-04 17:54:03 +08:00
// create the editor
var container = document.getElementById("jsoneditor");
var editor = new JSONEditor(container);
2013-05-04 17:54:03 +08:00
// set json
function setJSON () {
var json = {
"Array": [1, 2, 3],
"Boolean": true,
"Null": null,
"Number": 123,
"Object": {"a": "b", "c": "d"},
"String": "Hello World"
};
editor.set(json);
}
// get json
function getJSON() {
var json = editor.get();
alert(JSON.stringify(json, null, 2));
}
</script>
</body>
</html>
2013-05-04 18:02:20 +08:00
```
For more examples, see the
[examples section](https://github.com/josdejong/jsoneditor/tree/master/examples).