本文要推薦的[ToolFk]是一款程序員經常使用的線上免費測試工具箱,ToolFk 特色是專註於程序員日常的開發工具,不用安裝任何軟件,隻要把內容貼上按一個執行按鈕,就能獲取到想要的內容結果。ToolFk還支持 BarCode條形碼在線生成、 QueryList采集器、 PHP代碼在線運行、 PHP混淆、加密、解密、 Python代碼在線運行、JavaScript在線運行、YAML格式化工具、HTTP模擬查詢工具、HTML在線工具箱、JavaScript在線工具箱、CSS在線工具箱、JSON在線工具箱、Unixtime時間戳轉換、Base64/URL/Native2Ascii轉換、CSV轉換工具箱、XML在線工具箱、WebSocket在線工具、Markdown 在線工具箱、Htaccess2nginx 轉換、進制在線轉換、在線加密工具箱、在線偽原創工具、在線APK反編譯、在線網頁截圖工具、在線隨機密碼生成、在線生成二維碼Qrcode、在線Crontab表達式生成、在線短網址生成、在線計算器工具。等20多個日常程序員開發工具,算是一個非常全面的程序員工具箱網站。
網站名稱:ToolFk網站鏈結:http://www.toolfk.com/工具鏈接:http://www.toolfk.com/tool-format-xml
本工具[JS實現XML在線格式化、壓縮、校驗、XML轉JSON工具]依賴的代碼庫為http://github.com/nashwaan/xml-js
STEP 1
STEP 2
核心代碼如下
var xt = "", h3OK = 1;
function checkXML(e) {
var t, o, i = e.nodeName;
if ("h3" == i) {
if (0 == h3OK)
return;
h3OK = 0
}
for ("#text" == i && (xt = xt + e.nodeValue + "n"),
t = e.childNodes.length,
o = 0; o < t; o++)
checkXML(e.childNodes[o])
}
xml_2_json:function(options){
if (toolfk.beautify_default.beautify_in_progress) {
return;
}
var opts = $.extend({},toolfk.beautify_default, options);
var source = opts.source.getValue();
if(source==''){
return layer.msg(NOT_EMPTY);
}
if(source.indexOf('encoding="UTF-8"')<0){
source = ''+source;
}
toolfk.beautify_default.beautify_in_progress = true;
var lastResult = xml2json(source, {compact: true, spaces: 4});
opts.target.setValue(lastResult);
toolfk.report('xml_2_json',lastResult);
toolfk.beautify_default.beautify_in_progress = false;
},
beautify_xml:function(options){
if (toolfk.beautify_default.beautify_in_progress) {
return;
}
var opts = $.extend({},toolfk.beautify_default, options);
var source = opts.source.getValue();
if(source==''){
return layer.msg(NOT_EMPTY);
}
toolfk.beautify_default.beautify_in_progress = true;
var value= format(source,{method: 'xml'});
opts.target.setValue(value);
toolfk.report('beautify_xml',value);
toolfk.beautify_default.beautify_in_progress = false;
},
上一篇
下一篇
(報告出品方/作者:開源證券,諸海濱,趙昊)1、公司情況:深耕智能終端產品,2021年營收上漲39%1.1、發展歷程:成立於2011...