我需要使用 SOAP Web 服务,它自然会以 XML 格式发送响应,因为我正在开发 Appcelerator Titanium 移动应用程序,因此我更喜欢 JSON 格式的响应。在网上查看后,我使用此Javascript 代码转换了响应,它大部分工作但返回的结果如下:
{
"SOAP-ENV:Body" : {
"ns1:linkAppResponse" : {
"ns1:result" : {
#text : true;
};
"ns1:uuid" : {
#text : "a3dd915e-b4e4-43e0-a0e7-3c270e5e7aae";
};
};
};
}
当然,导致问题中的冒号和散列,所以我调整了代码以在名称上执行子字符串并删除“:”之前的任何内容,然后对生成的 JSON 进行字符串化,删除所有散列并再次解析 JSON。这对我来说有点乱,但我最终得到了一些可用的东西。
这是我正在使用的 xmlToJson 代码:
// Changes XML to JSON
function xmlToJson(xml) {
// Create the return object
var obj = {};
if (xml.nodeType == 1) {// element
// do attributes
if (xml.attributes.length > 0) {
obj["@attributes"] = {};
for (var j = 0; j < xml.attributes.length; j++) {
var attribute = xml.attributes.item(j);
obj["@attributes"][attribute.nodeName] = attribute.nodeValue;
}
}
} else if (xml.nodeType == 3) {// text
obj = xml.nodeValue;
}
// do children
if (xml.hasChildNodes()) {
for (var i = 0; i < xml.childNodes.length; i++) {
var item = xml.childNodes.item(i);
var nodeName = item.nodeName.substring(item.nodeName.indexOf(":") + 1);
if ( typeof (obj[nodeName]) == "undefined") {
obj[nodeName] = xmlToJson(item);
} else {
if ( typeof (obj[nodeName].push) == "undefined") {
var old = obj[nodeName];
obj[nodeName] = [];
obj[nodeName].push(old);
}
obj[nodeName].push(xmlToJson(item));
}
}
}
return obj;
};
module.exports = xmlToJson;
这会产生以下 JSON:
{
Body : {
linkAppResponse : {
result : {
text : true;
};
uuid : {
text : "9022d249-ea8a-47a3-883c-0f4cfc9d6494";
};
};
};
}
虽然这会返回一个我可以使用的 JSON 对象,但我希望得到的 JSON 格式如下:
{
result : true;
uuid : "9022d249-ea8a-47a3-883c-0f4cfc9d6494";
};
大多数情况下它不那么冗长,我可以简单地调用 json.result 来检查查询是否成功而不是 json.Body.linkAppResponse.result.text
任何帮助是极大的赞赏。