http://www.3lian.com/edu/2014/02-10/127921.html
本篇文章仅仅要是对jquery ajax跨域解决方法(json方式)进行了介绍,须要的朋友能够过来參考下,希望对大家有所帮助 近期公司开发的项目中非常多地方须要跨域ajax请求,比方几个子域名下 http://a.****.com/index123.aspx, http://b.****.com/index2.aspx 都要请求用户json信息,然后再对数据进行处理,起初我和同事们试了非常多种方法。使用$.ajax() 不管是get或post方法都会引起uri deny的错误。一番GG之后发现了解决方法。也了解当中的原因。 jquery从1.2開始,.getJSON就支持跨域操作了。使用jquery.getJSON()方法能够解决跨域问题。实比例如以下 前台 <script type="text/javascript" src="/script/jquery.js"></script> HTML中JS代码 function gettst2() { $.getJSON("http://ucenter.xxxx.com.cn/ajax/test.aspx?
callback=?", { id: "123456", site: "01" }, function(data) { alert(data.htmls); document.getElementById("shows").innerHTML = data.htmls; }); } gettst2(); ASPX.cs文件里处理为 string jsoncall = Request.QueryString("callback"); Response.Write(jsoncall + "({htmls:測试001})"); 假设加html代码的话。千万别加/n 符号,不然会出现乱码,js 错误。
资料二:
各自是JQuery的 jquery.ajax jsonp格式和jquery.getScript方式。
什么是jsonp格式呢?API原文:假设获取的数据文件存放在远程server上(域名不同,也就是跨域获取数据)。则须要使用jsonp类型。使用这样的类型的话。会创建一个查询字符串參数 callback=? ,这个參数会加在请求的URL后面。server端应当在JSON数据前加上回调函数名。以便完毕一个有效的JSONP请求。意思就是远程服务端须要对返回的数据做下处理,依据client提交的callback的參数,返回一个callback(json)的数据。而client将会用script的方式处理返回数据,来对json数据做处理。JQuery.getJSON也相同支持jsonp的数据方式调用。
clientJQuery.ajax的调用代码演示样例:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
$.ajax({ type
: "get" , async: false , url
: "http://www.xxx.com/ajax.do" , dataType
: "jsonp" , jsonp: "callbackparam" , //服务端用于接收callback调用的function名的參数 jsonpCallback: "success_jsonpCallback" , //callback的function名称 success
: function (json){ alert(json); alert(json[0].name); }, error: function (){ alert( 'fail' ); } }); |
1
2
3
4
5
|
public
void ProcessRequest (HttpContext context) { context.Response.ContentType
= "text/plain" ; String
callbackFunName = context.Request[ "callbackparam" ]; context.Response.Write(callbackFunName
+ "([
{ name:"John"}])" ); } |
资料三:
from : http://www.myquickphp.com/archives/147
”
<script type="text/javascript" src="jquery-1.4.2.js"></script>
<script type="text/javascript">
/*
AJAX跨域问题完美解决方式
研究:袁维
启发:乐锋
*/
function jsonCallBack(url,callback)
{
$.getScript(url,function(){
callback(json);
});
}
function fun1()
{
jsonCallBack('http://b.com/b.php',function(json){
alert(json.message);
})
}
</ script>
<button type="button" onclick="fun1()">跨域訪问</button>
<?php
$ary = array('result'=>0,'message'=>'跨域成功');
$json = json_encode($ary);
//一定要这样定义输出最后的JSON数据,这是利用JS的闭包特性
echo "var json=$json;";
?>
<script src="jquery-1.4.2.js" type="text/javascript"></script>
<script type="text/javascript">
function fun1()
{
$.getJSON("http://a.com/c.php?no=10&msg=ok&format=json&jsoncallback=?",
function(data){
alert(data.msg);
});
}
</script>
<button type="button" onclick="fun1()">跨域处理</button>
<?php
$no = $_GET['no'];
$msg = $_GET['msg'];
$json = json_encode(array('no'=>$no,'msg'=>$msg));
//必需下面这样输出
echo $_GET['jsoncallback'].'('.$json.')';
版权声明:本文博主原创文章,博客,未经同意不得转载。