XUI库:调用Web方法(跨域)

发布于 2024-11-19 08:09:29 字数 491 浏览 2 评论 0原文

我在这里只找到了一个如何使用 xui.js 调用 Web 服务的示例: http://wiki.phonegap .com/w/page/32513809/Simple-Web-Service-Conspiration-with-PhoneGap-and-XUI

但尚不清楚。例如,如何调用此 Web 方法?: http://www.w3schools.com/webservices/tempconvert.asmx?op=CelsiusToFahrenheit

I found only one example how to use xui.js to call web service here:
http://wiki.phonegap.com/w/page/32513809/Simple-Web-Service-Consumption-with-PhoneGap-and-XUI

But it isn't clear. How to invoke for example this web method?:
http://www.w3schools.com/webservices/tempconvert.asmx?op=CelsiusToFahrenheit

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

双手揣兜 2024-11-26 08:09:29

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

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);
    }
});

I am also not familiar with this. but their example looks like you may call it in the following way:

x$('#element_id).xhr('http://www.w3schools.com/webservices/tempconvert.asmx/CelsiusToFahrenheit', {
    async: true,
    method: 'post',
    callback: function() {
        alert("The response is " + this.responseText);
    }
});

as you will need to send Celsius data to the 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);
    }
});
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文