jsoneditor/examples/17_on_event_api.html

97 lines
2.1 KiB
HTML
Raw Normal View History

2018-07-16 22:52:41 +08:00
<!DOCTYPE HTML>
<html lang="en">
2018-07-16 22:52:41 +08:00
<head>
<meta charset="utf-8">
2018-07-16 22:52:41 +08:00
<link href="../dist/jsoneditor.css" rel="stylesheet" type="text/css">
<script src="../dist/jsoneditor.js"></script>
<style type="text/css">
body {
font: 10.5pt arial;
color: #4d4d4d;
line-height: 150%;
width: 500px;
padding-left: 40px;
}
code {
background-color: #f5f5f5;
}
#jsoneditor {
width: 500px;
height: 500px;
}
</style>
</head>
<body>
<p>
When clicking on a JSON field or value, a log message will be shown in
console.
</p>
<form>
<div id="jsoneditor"></div>
</form>
<script>
const container = document.getElementById('jsoneditor')
2018-07-16 22:52:41 +08:00
const options = {
2018-07-16 22:52:41 +08:00
mode: 'tree',
modes: ['code', 'form', 'text', 'tree', 'view', 'preview'], // allowed modes
name: "jsonContent",
2018-07-16 22:52:41 +08:00
onError: function (err) {
alert(err.toString())
2018-07-16 22:52:41 +08:00
},
onEvent: function(node, event) {
if (event.type === 'click') {
let message = 'click on <' + node.field +
2018-07-30 19:09:27 +08:00
'> under path <' + node.path +
'> with pretty path: <' + prettyPrintPath(node.path) + '>'
if (node.value) {
message += ' with value <' + node.value + '>'
}
console.log(message)
2018-07-16 22:52:41 +08:00
}
function prettyPrintPath(path) {
let str = ''
for (let i=0; i<path.length; i++) {
const element = path[i]
2018-07-30 19:09:27 +08:00
if (typeof element === 'number') {
str += '[' + element + ']'
} else {
if (str.length > 0) str += ','
str += element
}
}
return str
}
2018-07-16 22:52:41 +08:00
}
}
2018-07-16 22:52:41 +08:00
const json = {
"array": [1, 2, [3,4,5]],
"boolean": true,
"htmlcode": '&quot;',
"escaped_unicode": '\\u20b9',
"unicode": '\u20b9,\uD83D\uDCA9',
"return": '\n',
"null": null,
"number": 123,
"object": {"a": "b", "c": "d", "e": [1, 2, 3]},
"string": "Hello World",
"url": "http://jsoneditoronline.org",
"[0]": "zero"
}
window.editor = new JSONEditor(container, options, json)
2018-07-16 22:52:41 +08:00
console.log('json', json)
console.log('string', JSON.stringify(json))
2018-07-16 22:52:41 +08:00
</script>
</body>
</html>