热门标签 | HotTags
当前位置:  开发笔记 > 编程语言 > 正文

如何利用jQuery的JSONP技术实现跨域调用外部Web服务?

本文探讨了如何利用jQuery的JSONP技术实现跨域调用外部Web服务。通过详细解析JSONP的工作原理及其在jQuery中的应用,本文提供了实用的代码示例和最佳实践,帮助开发者解决跨域请求中的常见问题。

I had a previous question can jquery ajax call external webservice?

我有一个先前的问题可以jquery ajax调用外部webservice?


and some good developers answered me to use jsonp, but i don't know how to use it, i am trying to call my service using this code:

一些优秀的开发人员回答我使用jsonp,但我不知道如何使用它,我试图使用此代码调用我的服务:

$.ajax({
            type: "POST",
            url: "http://localhost:1096/MySite/WebService.asmx?callback=?",
            data: "{}",
            contentType: "application/json; charset=utf-8",
            dataType: "jsonp",
            success: function(msg) {alert(msg);}
            });


and this is my service code:

这是我的服务代码:

[WebMethod]
public string HelloWorld() {
    return "Hello World " ;
}


anyone have examples or can explain this issue for me?

任何人都有例子或可以为我解释这个问题?

UPDATE:
I wrote the code again to be like this:

更新:我再次编写代码如下:

$.getJSON("http://localhost:1096/YourShoppingTest1/WebService.asmx/HelloWorld?jsOnp=?",{name:"test"},
    function(data){
    alert(data.x);
    });


and the service like this:

和这样的服务:

[WebMethod]
public string HelloWorld(string name)
{
    return "( {\"x\":10 , \"y\":100} )";
}


But it always give me this error when back: "missing ; before statement [Break on this error] ( {"x":10 , "y":100} )"

但它总是在返回时给我这个错误:“丢失;在声明之前[打破此错误]({”x“:10,”y“:100})”

and never call the success function, can anyone help with that?

并且从不调用成功函数,任何人都可以帮忙吗?

5 个解决方案

#1


I've had a similiar problem, unfortunately I don't have the code at hand.

我有一个类似的问题,不幸的是我没有手头的代码。

From memory:

  • Add [ScriptService] as an attribute to your Web Method
  • 将[ScriptService]作为属性添加到Web方法中

  • Also change your url to call the HelloWorld procedure.
    Something like http://localhost:1096/MySite/WebService.asmx/HelloWorld?callback
  • 同时更改您的网址以调用HelloWorld过程。类似于http:// localhost:1096 / MySite / WebService.asmx / HelloWorld?回调

See: What are some good examples of JQuery using JSONP talking to .net? & What is the best way to call a .net webservice using jquery?

请参阅:使用JSONP与.net交谈的JQuery的一些很好的例子是什么?使用jquery调用.net webservice的最佳方法是什么?

#2


The point with JSONP is the P! P as in padding. You are padding the JSON object literal with a function call - invoking a function on the calling page taking the data object as an argument.

JSONP的观点是P! P如填充。您正在使用函数调用填充JSON对象文字 - 在调用页面上调用函数,将数据对象作为参数。

I.e. if you request the webservice, send the desired callback function name in the query string

即如果您请求Web服务,请在查询字符串中发送所需的回调函数名称

...service/?callback=hello

Then the service should answer (using appropriate mime type):

然后服务应该回答(使用适当的mime类型):

hello({a: 17, b: 4117});

For a more in-depth explanation, see: http://www.stpe.se/2008/10/cross-site-data-retrieval-using-jsonp/

有关更深入的说明,请参阅:http://www.stpe.se/2008/10/cross-site-data-retrieval-using-jsonp/

#3


You can't issue a POST request using JSONP, only GET (because GETs the resource).

您不能使用JSONP发出POST请求,只能发出GET(因为

#4


Hezil's code worked for me, but I had to change the server code to this:

Hezil的代码对我有用,但我不得不将服务器代码更改为:

$data = '{"name" : "hello world"}'; echo $_GET['callback'] . '(' . $data . ');';

Note the "callback" instead of "jsoncallback".

注意“回调”而不是“jsoncallback”。

#5


First you should add jsonp ('callback') in your web server like $_GET['callback']

首先,您应该在Web服务器中添加jsonp('callback'),例如$ _GET ['callback']

Second ,don't forget the ';' after the output scripts

其次,不要忘记';'输出脚本之后

$data = '{"name" : "hello world"}';
echo $_GET['jsoncallback'] . '(' . $data . ');';

Now you can find out why the "missing ; before statement" problem occured.

现在你可以找出为什么会出现“缺失;在声明之前”的问题。

html:

$.getJSON({"http://localhost:1096/MySite/WebService.asmx?callback=?",
        function(data){alert(data);}
        });

推荐阅读
author-avatar
新梅乀_Esther
这个家伙很懒,什么也没留下!
PHP1.CN | 中国最专业的PHP中文社区 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved | 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有