0

我在这里只找到了一个如何使用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

4

1 回答 1

0

我也不熟悉这个。但是他们的示例看起来您可以通过以下方式调用它:

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);
    }
});
于 2011-07-10T10:42:03.287 回答