码迷,mamicode.com
首页 > Web开发 > 详细

如何在页面显示json数据

时间:2018-11-05 16:13:42      阅读:564      评论:0      收藏:0      [点我收藏+]

标签:ace   string   html   class   分享   htm   col   png   技术   

技术分享图片

1.方法:

syntaxHeightlight(json) {
  if (typeof json !== "string") {
    json = JSON.stringify(json, undefined, 2)
  }
  json = json.replace(/&/g, ‘&‘).replace(/</g, ‘<‘).replace(/>/g,
    ‘>‘);
  return json.replace(/("(\\u[a-zA-Z0-9]{4}|\\[^u]|[^\\"])*"(\s*:)?|\b(true|false|null)\b|-?\d+(?:\.\d*)?(?:[eE][+\-]?\d+)?)/g, function (match) {
    var cls = ‘number‘;
    if (/^"/.test(match)) {
      if (/:$/.test(match)) {
        cls = ‘key‘;
      } else {
        cls = ‘string‘;
      }
    } else if (/true|false/.test(match)) {
      cls = ‘boolean‘;
    } else if (/null/.test(match)) {
      cls = ‘null‘;
    }
    return ‘<span class="‘ + cls + ‘">‘ + match + ‘</span>‘;
  });
}

 2.在html里面添加一个区域:

<pre id="result">
</pre>

3.调用该方法:

$(#result).html(syntaxHighlight(data));

 

 

 

如何在页面显示json数据

标签:ace   string   html   class   分享   htm   col   png   技术   

原文地址:https://www.cnblogs.com/xieli26/p/9909366.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!