Created
May 12, 2016 22:00
-
-
Save loretoparisi/f6fdac0cbba3b44fa1398eebc25f037f to your computer and use it in GitHub Desktop.
JSON 2 XML Ref. http://goessner.net/download/prj/jsonxml/json2xml.js
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* This work is licensed under Creative Commons GNU LGPL License. | |
License: http://creativecommons.org/licenses/LGPL/2.1/ | |
Version: 0.9 | |
Author: Stefan Goessner/2006 | |
Web: http://goessner.net/ | |
*/ | |
function json2xml(o, tab) { | |
var toXml = function(v, name, ind) { | |
var xml = ""; | |
if (v instanceof Array) { | |
for (var i=0, n=v.length; i<n; i++) | |
xml += ind + toXml(v[i], name, ind+"\t") + "\n"; | |
} | |
else if (typeof(v) == "object") { | |
var hasChild = false; | |
xml += ind + "<" + name; | |
for (var m in v) { | |
if (m.charAt(0) == "@") | |
xml += " " + m.substr(1) + "=\"" + v[m].toString() + "\""; | |
else | |
hasChild = true; | |
} | |
xml += hasChild ? ">" : "/>"; | |
if (hasChild) { | |
for (var m in v) { | |
if (m == "#text") | |
xml += v[m]; | |
else if (m == "#cdata") | |
xml += "<![CDATA[" + v[m] + "]]>"; | |
else if (m.charAt(0) != "@") | |
xml += toXml(v[m], m, ind+"\t"); | |
} | |
xml += (xml.charAt(xml.length-1)=="\n"?ind:"") + "</" + name + ">"; | |
} | |
} | |
else { | |
xml += ind + "<" + name + ">" + v.toString() + "</" + name + ">"; | |
} | |
return xml; | |
}, xml=""; | |
for (var m in o) | |
xml += toXml(o[m], m, ""); | |
return tab ? xml.replace(/\t/g, tab) : xml.replace(/\t|\n/g, ""); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment