我在这里只找到了一个如何使用xui.js
调用网络服务的示例:
http ://wiki.phonegap.com/w/page/32513809/Simple-Web-Service-Consumption-with-PhoneGap-and-XUI
但目前还不清楚。例如,如何调用此 Web 方法?: http ://www.w3schools.com/webservices/tempconvert.asmx?op=CelsiusToFahrenheit
我在这里只找到了一个如何使用xui.js
调用网络服务的示例:
http ://wiki.phonegap.com/w/page/32513809/Simple-Web-Service-Consumption-with-PhoneGap-and-XUI
但目前还不清楚。例如,如何调用此 Web 方法?: http ://www.w3schools.com/webservices/tempconvert.asmx?op=CelsiusToFahrenheit
我也不熟悉这个。但是他们的示例看起来您可以通过以下方式调用它:
x$('#element_id).xhr('http://www.w3schools.com/webservices/tempconvert.asmx/CelsiusToFahrenheit', {
async: true,
method: 'post',
callback: function() {
alert("The response is " + this.responseText);
}
});
因为您需要将摄氏度数据发送到 API:
x$('#element_id).xhr('http://www.w3schools.com/webservices/tempconvert.asmx/CelsiusToFahrenheit', {
async: true,
data: 'Celsius=40',
method: 'post',
callback: function() {
alert("The response is " + this.responseText);
}
});