如何在XML.text中检索输出中添加逗号?

时间:2018-03-18 03:27:05

标签: javascript xml soap

目前我正在使用SOAP来检索我的值。所以现在的问题是

当我收到回复时,它是XML格式的,所以为了查看回复,我做了回复.responseText

所以代码看起来像这样:

$.ajax(settings).complete(function (response) {
     console.log(response.responseText);
}

我在console.log中得到的响应是:

<?xml version='1.0' encoding='UTF-8'?>
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/">
    <soapenv:Header/>
    <soapenv:Body>
        <ns:findResponse xmlns:ns="http://property.property.ws" xmlns:ax221="http://property.property.ws/xsd" xmlns:ax223="http://filter.common.nyx.nl/xsd">
            <ns:return xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xs="http://www.w3.org/2001/XMLSchema" xsi:type="xs:int">48</ns:return>
            <ns:return xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xs="http://www.w3.org/2001/XMLSchema" xsi:type="xs:int">50</ns:return>
            <ns:return xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xs="http://www.w3.org/2001/XMLSchema" xsi:type="xs:int">51</ns:return>
        </ns:findResponse>
    </soapenv:Body>
</soapenv:Envelope>

如果你向右滚动,你可以看到我的三个值48 50和51。

所以我想提取这3个值。截至目前我正在这样做:

var xmlDoc = $.parseXML(response.responseText);     
var $xml = $(xmlDoc);

var primaryKeysOfProperties = $xml.text();

console.log(primaryKeysOfProperties);               

我从primaryKeysOfProperties获得的结果是485051。

渴望输出 我想让输出变成这样的48,50,51。

我已经在这里工作了2天..我研究并在堆栈溢出中发现了一些类似的问题,但这些有点不同。我试图改变,但我失败了。有人可以帮忙吗? :)

1 个答案:

答案 0 :(得分:0)

试试这个,result数组应包含您要查找的内容

const xml = `<?xml version='1.0' encoding='UTF-8'?>
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/">
    <soapenv:Header/>
    <soapenv:Body>
        <ns:findResponse xmlns:ns="http://property.property.ws" xmlns:ax221="http://property.property.ws/xsd" xmlns:ax223="http://filter.common.nyx.nl/xsd">
            <ns:return xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xs="http://www.w3.org/2001/XMLSchema" xsi:type="xs:int">48</ns:return>
            <ns:return xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xs="http://www.w3.org/2001/XMLSchema" xsi:type="xs:int">50</ns:return>
            <ns:return xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xs="http://www.w3.org/2001/XMLSchema" xsi:type="xs:int">51</ns:return>
        </ns:findResponse>
    </soapenv:Body>
</soapenv:Envelope>`

const xmlDoc = $.parseXML(xml);
const $xml = $(xmlDoc);
const result = [];
$xml.find('ns\\:return').each(function(){
  result.push($(this).text());
});

console.log(result.join(','))