这篇文章主要介绍了Vue之使用JsonView来展示Json树的实例代码,本文给大家介绍的非常详细,对大家的学习或工作具有一定的参考借鉴价值,需要的朋友可以参考下
前两天干活儿有个需求,在前端需要展示可折叠的Json树,供开发人员查看,这里采用JsonView组件来实现,它是一款用于展示Json的Vue组件,支持大体积的Json文件快速解析渲染,下面记录一下实现过程。
1.首先先下载好JsonView的组件:JsonView.vue,组件代码如下:
<div class="bgView"> <div> <span> </span><div class="content-wrap"> <p class="first-line"> <span class="json-key">"{{jsonKey}}": </span><span> {{prefix}} {{innerclosed ? ('...' + subfix) : ''}} <span class="json-note"> {{innerclosed ? (' // count: ' + length) : ''}} </span></span><span>{{isArray ? '[]' : '{}'}}</span></p><div class="json-body"> <p class="json-item"> <span class="json-key"> {{(isArray ? '' : '"' + item.key + '"')}} </span> : <span class="json-value"> {{item.value + (index === items.length - 1 ? '' : ',')}} </span></p><span class="body-line"></span></div><p class="last-line"> <span>{{subfix}}</span></p></div></div></div> .bgView { background-color: #fafafa; } .json-view { position: relative; display: block; width: 100%; height: 100%; white-space: nowrap; padding-left: 20px; box-sizing: border-box; } .json-note { color: #909399; } .json-key { color: rgb(147, 98, 15); } .json-value { color: rgb(24, 186, 24); } .json-item { margin: 0; padding-left: 20px; } .first-line { padding: 0; margin: 0; } .json-body { position: relative; padding: 0; margin: 0; } .json-body .body-line { position: absolute; height: 100%; width: 0; border-left: dashed 1px #bbb; top: 0; left: 2px; } .last-line { padding: 0; margi<b>本文来源gao@!dai!ma.com搞$$代^@码!网</b>n: 0; } .angle { position: absolute; display: block; cursor: pointer; float: left; width: 20px; text-align: center; left: 0; } .angle::after { content: ""; display: inline-block; width: 0; height: 0; vertical-align: middle; border-top: solid 4px #333; border-left: solid 6px transparent; border-right: solid 6px transparent; } .angle.closed::after { border-left: solid 4px #333; border-top: solid 6px transparent; border-bottom: solid 6px transparent; }
2.在需要使用的vue页面中引用JsonView组件
import JsonView from '@/components/JsonView'
3.定义Json数据变量
jsonData:{},
4.页面展示代码
5.实现效果如下:
JsonViewAttributes
以上就是Vue中使用JsonView来展示Json树的实例代码的详细内容,更多请关注gaodaima搞代码网其它相关文章!