欧美一区二区三区,国内熟女精品熟女A片视频小说,日本av网,小鲜肉男男GAY做受XXX网站

javascript 調用 wcf

陳芳芳1年前8瀏覽0評論
在前端開發中,JavaScript是不可或缺的一部分。WCF是一個面向服務的Windows通信技術,可以方便地用來創建各種網絡應用程序。那么如何在JavaScript中調用WCF呢?本文將為大家介紹這一過程。
在JavaScript中調用WCF可以通過SOAP協議來實現,通過XMLHttpRequest發送HTTP Request,接收WCF返回的SOAP消息,最后解析SOAP消息,獲取需要的數據。
下面是一個簡單的例子,假設我們要調用一個WCF服務,獲取一個數字的平方值:
<script>
var xmlhttp = new XMLHttpRequest();
xmlhttp.open('POST', 'http://localhost:1234/MyService.svc', true);
xmlhttp.setRequestHeader("Content-Type", "application/soap+xml");
xmlhttp.onreadystatechange = function () {
if (xmlhttp.readyState == 4) {
if (xmlhttp.status == 200) {
var response = xmlhttp.responseXML.getElementsByTagName('s:Body')[0].getElementsByTagName('SquareResponse')[0].getElementsByTagName('SquareResult')[0].childNodes[0].nodeValue;
alert(response);
} else {
alert('There was a problem with the request.');
}
}
};
var request = '<?xml version="1.0" encoding="utf-8"?> \
<s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/"> \
<s:Body> \
<Square xmlns="http://tempuri.org/"> \
<number>5</number> \
</Square> \
</s:Body> \
</s:Envelope>';
xmlhttp.send(request);
</script>

以上代碼中,我們首先使用XMLHttpRequest創建一個HTTP Request對象,設置請求的URL為WCF服務的URL,請求的方式為POST。然后設置請求頭Content-Type為application/soap+xml,表示請求的消息體為SOAP消息。接下來設置onreadystatechange事件,當請求狀態為4(請求完成)時,通過getElementsByTagName獲取SOAP消息中的SquareResult節點,然后使用childNodes[0].nodeValue獲取節點的值。最后顯示獲取的值。
在這個例子中,我們使用了XMLHttpRequest和SOAP協議來調用WCF服務,但這并不是唯一的方式。如果你使用jQuery,那么可以使用$.ajax()方法來實現調用。下面是一個jQuery實現的示例代碼:
<script src="jquery-1.12.4.min.js"></script>
<script>
$.ajax({
type: "POST",
contentType: "application/soap+xml",
url: "http://localhost:1234/MyService.svc",
dataType: "xml",
data: '<?xml version="1.0" encoding="utf-8"?> \
<s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/"> \
<s:Body> \
<Square xmlns="http://tempuri.org/"> \
<number>5</number> \
</Square> \
</s:Body> \
</s:Envelope>',
success: function (xml) {
var response = $(xml).find('SquareResponse').find('SquareResult').text();
alert(response);
},
error: function () {
alert("There was a problem with the request.");
}
});
</script>

在這個例子中,我們使用$.ajax()方法來發送HTTP Request,設置請求頭ContentType為application/soap+xml,設置請求的URL和請求體。在success函數中,通過find方法獲取SOAP消息中的SquareResult節點,然后使用text()方法獲取節點的值。最后顯示獲取的值。
總結一下,JavaScript調用WCF有兩種常見的方式:使用XMLHttpRequest和SOAP協議實現和使用jQuery的.ajax()方法實現。兩種方式各有優缺點,開發者可以選擇最適合自己項目的方式來實現。
下一篇c div除