-
Notifications
You must be signed in to change notification settings - Fork 88
/
Copy pathApp.vue
141 lines (133 loc) · 3.4 KB
/
App.vue
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
<template>
<div class="j-w">
<h1 class="t">Vue-Json-Edit</h1>
<div class="editor-w clearfix">
<div class="w-2">
<div class="editor">
<JsonEditor
:options="{
confirmText: 'confirm',
cancelText: 'cancel',
}"
:objData="jsonData"
v-model="jsonData" ></JsonEditor>
</div>
</div>
<div class="w-2">
<div class="code-pre">
<div slot="content">
<pre>
<code class="json" id="res_code"></code>
</pre>
</div>
</div>
</div>
</div>
</div>
</template>
<script>
import hljs from 'highlight.js'
export default {
name: 'app',
data: function() {
return {
jsonData: {
name: 'may',
age: null,
address: ['Panyu Shiqiao on Canton', 'Tianhe', {
city: 'forida meta 11'
}],
others: {
id: 1246,
joinTime: '2017-08-20. 10:20',
description: 'another'
}
}
}
},
watch: {
'jsonData': function () {
let c = this.formatJson(JSON.stringify(this.jsonData))
this.drawResCode(c)
}
},
methods: {
//JSON format print
formatJson: function(txt, compress /*是否为压缩模式*/) {
/* 格式化JSON源码(对象转换为JSON文本) */
var indentChar = " ";
if (/^\s*$/.test(txt)) {
console.error("数据为空,无法格式化! ");
return;
}
try {
var data = eval("(" + txt + ")");
} catch (e) {
throw ("数据源语法错误,格式化失败! 错误信息: " + e.description, "err");
return;
}
var draw = [],
last = false,
This = this,
line = compress ? "" : "\n",
nodeCount = 0,
maxDepth = 0;
var notify = function(name, value, isLast, indent /*缩进*/, formObj) {
nodeCount++; /*节点计数*/
for (var i = 0, tab = ""; i < indent; i++) tab += indentChar; /* 缩进HTML */
tab = compress ? "" : tab; /*压缩模式忽略缩进*/
maxDepth = ++indent; /*缩进递增并记录*/
if (value && value.constructor == Array) {
/*处理数组*/
draw.push(
tab + (formObj ? '"' + name + '":' : "") + "[" + line
); /*缩进'[' 然后换行*/
for (var i = 0; i < value.length; i++)
notify(i, value[i], i == value.length - 1, indent, false);
draw.push(
tab + "]" + (isLast ? line : "," + line)
); /*缩进']'换行,若非尾元素则添加逗号*/
} else if (value && typeof value == "object") {
/*处理对象*/
draw.push(
tab + (formObj ? '"' + name + '":' : "") + "{" + line
); /*缩进'{' 然后换行*/
var len = 0,
i = 0;
for (var key in value) len++;
for (var key in value) notify(key, value[key], ++i == len, indent, true);
draw.push(
tab + "}" + (isLast ? line : "," + line)
); /*缩进'}'换行,若非尾元素则添加逗号*/
} else {
if (typeof value == "string") value = '"' + value + '"';
draw.push(
tab +
(formObj ? '"' + name + '":' : "") +
value +
(isLast ? "" : ",") +
line
);
}
};
var isLast = true,
indent = 0;
notify("", data, isLast, indent, false);
return draw.join("");
},
//绘制res body
drawResCode: function (content) {
var target = document.getElementById('res_code');
target.textContent = content
hljs.highlightBlock(target)
},
},
mounted: function() {
let c = this.formatJson(JSON.stringify(this.jsonData))
this.drawResCode(c)
}
}
</script>
<style>
@import url('../node_modules/highlight.js/styles/github.css');
</style>