您的当前位置:首页正文

JavaScript格式化json和xml的方法示例

2020-11-27 来源:赴品旅游

格式化xml实例

在格式化XML时后台需要对返回数据做一下处理:

StringEscapeUtils.escapeHtml(po.getMsgBody())

<!DOCTYPE html>
<html lang="en">
<head>
 <meta charset="UTF-8">
 <title>原生js格式化xml的方法</title>
</head>
<body>
<!--格式化后的xml写入的位置-->
<div id="writePlace"></div>
<script>
 //格式化代码函数,已经用原生方式写好了不需要改动,直接引用就好
 String.prototype.removeLineEnd = function () {
 return this.replace(/(<.+?\s+?)(?:\n\s*?(.+?=".*?"))/g, '$1 $2')
 }
 function formatXml(text) {
 //去掉多余的空格
 text = '\n' + text.replace(/(<\w+)(\s.*?>)/g, function ($0, name, props) {
 return name + ' ' + props.replace(/\s+(\w+=)/g, " $1");
 }).replace(/>\s*?</g, ">\n<");
 //把注释编码
 text = text.replace(/\n/g, '\r').replace(/<!--(.+?)-->/g, function ($0, text) {
 var ret = '<!--' + escape(text) + '-->';
 //alert(ret);
 return ret;
 }).replace(/\r/g, '\n');
 //调整格式
 var rgx = /\n(<(([^\?]).+?)(?:\s|\s*?>|\s*?(\/)>)(?:.*?(?:(?:(\/)>)|(?:<(\/)\2>)))?)/mg;
 var nodeStack = [];
 var output = text.replace(rgx, function ($0, all, name, isBegin, isCloseFull1, isCloseFull2, isFull1, isFull2) {
 var isClosed = (isCloseFull1 == '/') || (isCloseFull2 == '/' ) || (isFull1 == '/') || (isFull2 == '/');
 //alert([all,isClosed].join('='));
 var prefix = '';
 if (isBegin == '!') {
 prefix = getPrefix(nodeStack.length);
 }
 else {
 if (isBegin != '/') {
 prefix = getPrefix(nodeStack.length);
 if (!isClosed) {
 nodeStack.push(name);
 }
 }
 else {
 nodeStack.pop();
 prefix = getPrefix(nodeStack.length);
 }
 }
 var ret = '\n' + prefix + all;
 return ret;
 });
 var prefixSpace = -1;
 var outputText = output.substring(1);
 //alert(outputText);
 //把注释还原并解码,调格式
 outputText = outputText.replace(/\n/g, '\r').replace(/(\s*)<!--(.+?)-->/g, function ($0, prefix, text) {
 //alert(['[',prefix,']=',prefix.length].join(''));
 if (prefix.charAt(0) == '\r')
 prefix = prefix.substring(1);
 text = unescape(text).replace(/\r/g, '\n');
 var ret = '\n' + prefix + '<!--' + text.replace(/^\s*/mg, prefix) + '-->';
 //alert(ret);
 return ret;
 });
 return outputText.replace(/\s+$/g, '').replace(/\r/g, '\r\n');
 }
 function getPrefix(prefixIndex) {
 var span = ' ';
 var output = [];
 for (var i = 0; i < prefixIndex; ++i) {
 output.push(span);
 }
 return output.join('');
 }
 //引用示例部分
 //(1)创建xml格式或者从后台拿到对应的xml格式
 var originalXml = '<?xml version="1.0"?> <note> <to>Tove</to> <from>Jani</from> <heading>Reminder</heading> <body>Dont forget me this weekend!</body> </note>';
 //(2)调用formatXml函数,将xml格式进行格式化
 var resultXml = formatXml(originalXml);
 //(3)将格式化好后的formatXml写入页面中
 document.getElementById("writePlace").innerHTML = '<pre>' +resultXml + '<pre/>';
</script>
</body>
</html>

这里使用在线HTML/CSS/JavaScript代码运行工具:http://tools.jb51.net/code/HtmlJsRun测试上述代码,可得如下运行结果:

    Tove
    Jani
    Reminder
    Dont forget me this weekend!

PS:这里再为大家提供几款关于xml与json操作的在线工具供大家参考使用:

在线XML/JSON互相转换工具:
http://tools.jb51.net/code/xmljson

在线格式化XML/在线压缩XML:
http://tools.jb51.net/code/xmlformat

XML在线压缩/格式化工具:
http://tools.jb51.net/code/xml_format_compress

在线JSON代码检验、检验、美化、格式化工具:
http://tools.jb51.net/code/json

JSON在线格式化工具:
http://tools.jb51.net/code/jsonformat

在线json压缩/转义工具:
http://tools.jb51.net/code/json_yasuo_trans

更多关于JavaScript相关内容可查看本站专题:《JavaScript操作XML文件技巧总结》、《JavaScript中json操作技巧总结》、《JavaScript字符与字符串操作技巧总结》、《JavaScript错误与调试技巧总结》及《JavaScript数据结构与算法技巧总结》

希望本文所述对大家JavaScript程序设计有所帮助。

显示全文