gpt4 book ai didi

javascript - 使用 jQuery/JavaScript 从 SOAP 响应中解析 XML

转载 作者:搜寻专家 更新时间:2023-11-01 05:06:44 24 4
gpt4 key购买 nike

我在使用 jQuery 解析来自 SOAP 服务器的响应时遇到问题。我想将 XML 响应转换为数组,因为有多行数据,如下所示。

这是请求:

<?xml version="1.0" encoding="utf-8"?>
<soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
<soap:Body>
<GetWorkPos xmlns="http://localhost/apps">
<id>int</id>
</GetWorkPos>
</soap:Body>
</soap:Envelope>

这是回应:

<?xml version="1.0" encoding="utf-8"?>
<soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
<soap:Body>
<GetWorkPosResponse xmlns="http://localhost.com/apps">
<GetWorkPosResult>
<GetWorkPos>
<ProductId>string</ProductId>
<Product>string</Product>
<quantity>decimal</quantity>
<Em>string</Em>
<type>string</type>
</GetWorkPos>
<GetWorkPos>
<ProductId>string</ProductId>
<Product>string</Product>
<Quantity>decimal</Quantity>
<Em>string</Em>
<Type>string</Type>
</GetWorkPos>
</GetWorkPosResult>
</GetWorkPosResponse>
</soap:Body>
</soap:Envelope>

这是我的代码:

   $(document).ready(function () {
$("#send").click(function (event) {
var wsUrl = "http://localhost/Service.asmx";

var soapRequest =
'<?xml version="1.0" encoding="utf-8"?> \
<soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" \
xmlns:xsd="http://www.w3.org/2001/XMLSchema" \
xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"> \
<soap:Body> \
<GetWorkPos xmlns="http://localhost.com/apps"> \
<id>' + $("#id").val() + '</id> \
</GetWorkPos> \
</soap:Body> \
</soap:Envelope>';

console.log(soapRequest);

$.ajax({
type: "post",
url: wsUrl,
contentType: "text/xml",
dataType: "xml",
data: soapRequest,
success: processSuccess,
error: processError
});

});
});

function processSuccess(data, status, req, xml, xmlHttpRequest, responseXML) {
$(req.responseXML)
.find('GetWorkPosResult')
.each(function(){
var id = $(this).find('ProductId').text();
console.log(id);
});
}

function processError(data, status, req) {
alert(req.responseText + " " + status);
console.log(data);
console.log(status);
console.log(req);
}

最佳答案

http://jsbin.com/uwirux/edit#javascript,html

var myObj = new Array();

$(req.responseXML)
.find('GetWorkPosResult').find('GetWorkPos')
.each(function(){
myObj.push($(this)); // Should't use .text() because you'll lose the ability to use .find('tagName')
});


for(var i = 0; i<myObj.length;i++){
var x = myObj[i].find('ProductId').text();
var y = myObj[i]find('Product').text();
}

$(myObj).each(function(){
var x = $(this).find('ProductId').text();
var y = $(this).find('Product').text();
});

关于javascript - 使用 jQuery/JavaScript 从 SOAP 响应中解析 XML,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10364657/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com