使用jsonp实现ajax跨域请求
JSONP的优点是:
它不像XMLHttpRequest对象实现的Ajax请求那样受到同源策略的限制;它的兼容性更好,在更加古老的浏览器中都 可以运行,不需要XMLHttpRequest或ActiveX的支持;并且在请求完毕后可以通过调用callback的方式回传结果。
JSONP的缺点则是:
它只支持GET请求而不支持POST等其它类型的HTTP请求;它只支持跨域HTTP请求这种情况,不能解决不同域的两个页面之间如何进行JavaScript调用的问题。
JSONP是一种脚本注入(Script Injection)行为,有一定的安全隐患。
下面说说如何实现:
一、首先需要在你的webservice的web.config中system.web节点里加入以下节点:
<webServices> <protocols> <add name="HttpPost"/> <add name="HttpGet"/> </protocols> </webServices>
二、webservice代码,为了同时支持一般的请求与jsonp ajax请求,代码如下:
using System.Web.Services; using System.Collections.Generic; using System.Data; using System.Web; /// <summary> ///WebService 的摘要说明 /// </summary> [WebService(Namespace = "http://tempuri.org/")] [WebServiceBinding(ConformsTo = WsiProfiles.BasicProfile1_1)] //若要允许使用 ASP.NET AJAX 从脚本中调用此 Web 服务,请取消对下行的注释。 [System.Web.Script.Services.ScriptService] public class WebService : System.Web.Services.WebService { /// <summary> /// 在ajax请求返回后,会自动将这些类型转换为json对象 /// </summary> public WebService() { } [WebMethod(Description = "测试")] public string getInfos(string infostring) { string result = infostring;//所要返回的json数据 string jsonCallBackFunName = HttpContext.Current.Request.Params["jsoncallback"] + ""; if (string.IsNullOrEmpty(jsonCallBackFunName)) { HttpContext.Current.Response.ContentType = "application/json;charset=utf-8"; HttpContext.Current.Response.Write(jsonCallBackFunName + "(" + infostring + ")"); HttpContext.Current.Response.End(); } return result; } }
三、页面及js代码:
<!DOCTYPE html> <html> <head> <title>Index</title> <script src="jquery-1.8.3.js" type="text/javascript"></script> <script type="text/javascript"> $(function () { $("#tj").click(function () { var dataStr = "info=ABCTest"; $.ajax({ type: "get", url: http://xxx/jQueryMobile.asmx/getInfos?jsoncallback, dataType: "jsonp", jsonp: ‘jsoncallback‘, data: dataStr, success: function (result) { alert(result.xxx); } }); }); }); </script> </head> <body> <div> <input id="tj" type="button" value="提交" /> </div> </body> </html>
如果遇到类似:Error... parsererror jQuery15001997238997904205_1298484897373 was not called
说明是解析出问题了,我一开始也碰到了,这个很有可能是你服务端返回的json格式有问题,或者拼接出问题了。
郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。