跨域访问Jquery实现

跨域访问js实现。

环境:.net3.5+Jquery+JSON.net

因为在跨域实现,所以这里新建网站,这个网站只需要:

(1) Customer类

public class Customer

{

    public int Unid { get; set; }

    public string CustomerName { get; set; }

    public string Memo { get; set; }

    public string Other { get; set; }

}

(2)Ashx文件

        Customer customer = new Customer

{ Unid = 1, CustomerName = "宋江", Memo = "天魁星", Other = "黑三郎" };

        string strJson = Newtonsoft.Json.JsonConvert.SerializeObject(customer);      

        context.Response.Write(strJson);   

  

然后在IIS中建立网站Web1,就是上边这个网站。

 

在vs中再建网站项目Web2,用于跨域访问Web1。

 

(一)  正常的JqueryAajx跨域请求

function jsonpajax_2() {

    $.ajax({

        url: "http://192.168.1.105:8123/Handler.ashx",

        type: "get",

        dataType: "json",

        success: function(data) {

            var tt = '';

            $.each(data, function(k, v) {

                tt += k + ":" + v + "
";

            });

            $("#divmessage").html(tt);

        }

    });

}

 

结果:会弹出提示窗口。

 

(二) Jquery Jsonp请求

function jsonpajax_1() {

    $.ajax({

        url: "http://192.168.1.105:8123/Handler.ashx?callback=?",

        type: "get",

        dataType: "jsonp",

        jsonp: "callback",

        success: function(data) {

            var tt = '';

            $.each(data, function(k, v) {

                tt += k + ":" + v + "
";

            });

            $("#divmessage").html(tt);

        }

    });

}

 

此时,跨域的Web1中的ashx文件数据提供要改一下:

string callback = context.Request.Params["callback"];

        context.Response.Write(callback+"("+strJson+")");

 

返回的数据的格式为:

jsonp1263199953609({"Unid":1,"CustomerName":"宋江","Memo":"天魁星","Other":"黑三郎"})

 

结果:

Unid:1

CustomerName:宋江

Memo:天魁星

Other:黑三郎

 

引用一段说明:

jsonp的最基本的原理是:动态添加一个是一致的(qq空间就是大量采用这种方式来实现跨域数据交换的) .JSONP是一种脚本注入(Script Injection)行为,所以也有一定的安全隐患

你可能感兴趣的:(前端技术)