jsonp实现跨域访问
程序员文章站
2023-08-26 21:08:36
要实现jsonp跨域访问,首先就要了解什么是跨域?然后jsonp与json的关系?
1、什么是跨域?
跨域简单的说就是一个域名下的程序和另一个域名下的程序做数据交互。比如...
要实现jsonp跨域访问,首先就要了解什么是跨域?然后jsonp与json的关系?
1、什么是跨域?
跨域简单的说就是一个域名下的程序和另一个域名下的程序做数据交互。比如说:现有一个https://www.zq.com和https://www.qt.com两个独立的网站,要实现从后一个网站向前一个网站中取数据。把做为数据来源的当作服务端,把去获取数据的当作客户端,实现面向服务的。
在动态网页当中,最重要的一项就是取数据。如果是在同一个项目中,将网站挂在同一个域名下,这种情况下无论是前台ajax还是后台直接取数据都非常方便。但是如果像上面的两个网站一样,在不同的域名下,那么取数据就变得非常麻烦(现在有web servers和wcf实现面向服务的编程)
2、什么情况下用jsonp做跨域访问?
当要用ajax从其它的项目中取数据时候。如果是在后台中从其它网站取数据,可用web servers或wcf等技术来实现。
3、jsonp和json的关系?
json是一种基于文本的数据交互方式,而jsonp是基于json的使用方式。从使用上简单的讲就是:不跨域 用json实现a jax和后台数据交互; 跨域 用jsonp实现ajax和其它域中程序做数据交互。
4、$.ajax实现jsonp
<%@ page language="c#" autoeventwireup="true" codebehind="prequest.aspx.cs" inherits="jsonp.prequest" %> <!doctype html public "-//w3c//dtd xhtml 1.0 transitional//en" "https://www.w3.org/tr/xhtml1/dtd/xhtml1-transitional.dtd"> <html xmlns="https://www.w3.org/1999/xhtml"> <head> <script src="scripts/jquery-1.7.1.min.js" type="text/javascript"></script> <script src="scripts/json2.js" type="text/javascript"></script> <script type="text/javascript"> function aa() { var person = {};//自定义数组 person.name = "aname"; person.age = 18; //console.log(json.stringify(person)); $.ajax({ url: "https://localhost:58878/jp.ashx",//另一个域中的程序 type: "get", datatype: "jsonp",//预期返回类型为jsonp data: { 'person': json.stringify(person) }, jsonp: "callback", //在一个jsonp请求中重写回调函数的名字,可省 success: function (rt) { var result = json.parse(rt); //console.log(result); $("#lb").html(result.name + "<br />" + result.age); }, error: function (e) { //console.log(e); } }); } </script> </head> <body> <input id="button1" type="button" value="取值" onclick="aa()" /> <p id = "lb" style="width: 90px;height: 90px;background-color: red"></p> </body> </html>
通过分析不难发现其与json写法上的不同:
1、url上的细微差异,在jsonk中常是直接某个路径下的处理程序,而jsonp是写别的网站(域)下的处理代码程序路径。但要注意:json也能这样写
2、datatypy现在处理的是jsonp而不是json
其它传参数据 ,接参数等和json并无二异
数据源部分
using system.web; namespace presponse { /// <summary> /// summary description for jp /// </summary> public class jp : ihttphandler { public class person { public string name { get; set; } public int age { get; set; } } public void processrequest(httpcontext context) { context.response.contenttype = "text/plain"; string callback = context.request["callback"];//callback不能少 string ca = context.request["person"]; person b = newtonsoft.json.jsonconvert.deserializeobject<person>(ca); string response = "{\"name\":\"" + b.name + "\",\"age\":\"" + b.age + "\"}"; string re = newtonsoft.json.jsonconvert.serializeobject(response); string call = callback + "(" + re + ")";//response和re相同,前面的callback不能少 context.response.write(call); } public bool isreusable { get { return false; } } } }
这样就实现了跨域访问
5、说明
1)之所以在前台取数据要分json和jsonp,是因为javascript 的同源策略