jsoneditor/examples/requirejs_demo/scripts/main.js

27 lines
633 B
JavaScript
Raw Normal View History

var module = '../../../dist/jsoneditor'
require([module], function (jsoneditor) {
// create the editor
var container = document.getElementById('jsoneditor')
var editor = jsoneditor(container)
2013-01-06 05:19:38 +08:00
// set json
document.getElementById('setJSON').onclick = function () {
var json = {
'array': [1, 2, 3],
'boolean': true,
'null': null,
'number': 123,
'object': {'a': 'b', 'c': 'd'},
'string': 'Hello World'
2016-10-28 17:46:46 +08:00
}
editor.set(json)
2016-10-28 17:46:46 +08:00
}
2013-01-06 05:19:38 +08:00
// get json
document.getElementById('getJSON').onclick = function () {
2016-10-28 17:46:46 +08:00
var json = editor.get()
alert(JSON.stringify(json, null, 2))
2016-10-28 17:46:46 +08:00
}
})