简体   繁体   English

如何使用Ajax jsonp将数据从一个域传输到另一个域?

[英]How Can I get the data from one domain to another domain using ajax jsonp?

EX: My site url "http://localhost:54887/CustomOrdering.html" but I want to get data from another site "http://localhost:27746/Orders.aspx" .For this I wrote in CustomOrdering.html 例如:我的网站网址为"http://localhost:54887/CustomOrdering.html"但我想从另一个网站"http://localhost:27746/Orders.aspx"获取数据。为此,我在CustomOrdering.html写道

function SessionLogin() {                    
                $.ajax({
                    type: "GET",
                    dataType: "jsonp",
                    contentType: "application/json",
                    async: false,
                    url: 'http://localhost:27746/Orders.aspx/SessionLogin',                       
                    success: function (msg) {
                    },
                    error: function (jqXHR, textStatus, errorThrown) {
                        alert(errorThrown);
                    }
                }); 
            }     

In Orders.aspx Orders.aspx中

 public  void SessionLogin()
    {
        HttpContext.Current.Response.ContentType = "application/json";
        string qs = HttpContext.Current.Request.QueryString["callback"];
        HttpContext.Current.Response.Write(qs+ "( [{ \"x\": 10, \"y\": 15}] )");
    }

I am getting the error jQuery11110002214477863162756_1449484451326 was not called and showing error message in console 'Uncaught SyntaxError: Unexpected token <' and click on it pointing to Orders.aspx design page starting' error image 我收到错误jQuery11110002214477863162756_1449484451326 was not called在控制台中显示错误消息“未捕获的SyntaxError:意外的令牌<”,然后单击它指向Orders.aspx设计页面开始” 错误图像

The other server needs to wrap the return value with your given callback name: 另一个服务器需要使用给定的回调名称包装返回值:

 public  void SessionLogin()
    {
        HttpContext.Current.Response.ContentType = "application/json";
        string qs = HttpContext.Current.Request.QueryString["callback"];
        HttpContext.Current.Response.Write( qs + "( [{ \"x\": 10, \"y\": 15}] )");
    }

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM