JSONP的解决基本跨域问题方案<转>
转:http://my.oschina.net/liuxiaori/blog/64256
一种解决方式
首先来看看在页面中如何使用jQuery的ajax解决跨域问题的简单版:
?
01
$(document).ready(
function
(){
02
???
var
?url='http:
//localhost:8080/WorkGroupManagment/open/getGroupById"
03
???????
+"?id=1&callback=?';
04
???
$.ajax({
05
?????
url:url,
06
?????
dataType:
'jsonp'
,
07
?????
processData:?
false
,
08
?????
type:
'get'
,
09
?????
success:
function
(data){
10
???????
alert(data.name);
11
?????
},
12
?????
error:
function
(XMLHttpRequest, textStatus, errorThrown) {
13
???????
alert(XMLHttpRequest.status);
14
???????
alert(XMLHttpRequest.readyState);
15
???????
alert(textStatus);
16
?????
}});
17
???
});
?
这样写是完全没有问题的,起先error的处理函数中仅仅是alert(“error”),为了进一步弄清楚是什么原因造成了错误,故将处理函数变为上面的实现方式。最后一行alert使用为;parsererror。百思不得其解,继续google,最终还是在万能的stackoverflow找到了答案,链接在这里。原因是jsonp的格式与json格式有着细微的差别,所以在server端的代码上稍稍有所不同。
比较一下json与jsonp格式的区别:
1
{
2
????
"message"
:
"获取成功"
,
3
????
"state"
:
"1"
,
4
????
"result"
:{
"name"
:
"工作组1"
,
"id"
:1,
"description"
:
"11"
}
5
}
?
1
callback({
2
????
"message"
:
"获取成功"
,
3
????
"state"
:
"1"
,
4
????
"result"
:{
"name"
:
"工作组1"
,
"id"
:1,
"description"
:
"11"
}
5
})
?
看出来区别了吧,在url中callback传到后台的参数是神马callback就是神马,jsonp比json外面有多了一层,callback()。这样就知道怎么处理它了。于是修改后台代码。
后台java代码最终如下:
?
01
@RequestMapping
(value =?
"/getGroupById"
)
02
??
public
?String getGroupById(
@RequestParam
(
"id"
) Long id,
03
??????
HttpServletRequest request, HttpServletResponse response)
04
??????
throws
?IOException {
05
????
String callback = request.getParameter(
"callback"
);
06
????
ReturnObject result =?
null
;
07
????
Group group =?
null
;
08
????
try
?{
09
??????
group = groupService.getGroupById(id);
10
??????
result =?
new
?ReturnObject(group,?
"获取成功"
, Constants.RESULT_SUCCESS);
11
????
}?
catch
?(BusinessException e) {
12
??????
e.printStackTrace();
13
??????
result =?
new
?ReturnObject(group,?
"获取失败"
, Constants.RESULT_FAILED);
14
????
}
15
????
String json = JsonConverter.bean2Json(result);
16
????
response.setContentType(
"text/html"
);
17
????
response.setCharacterEncoding(
"utf-8"
);
18
????
PrintWriter out = response.getWriter();
19
????
out.print(callback +?
"("
?+ json +?
")"
);
20
????
return
?null
;
21
??
}
?
注意这里需要先将查询结果转换我json格式,然后用参数callback在json外面再套一层,就变成了jsonp。指定数据类型为jsonp的ajax就可以做进一步处理了。
虽然这样解决了跨域问题,还是回顾下造成parsererror的原因。原因在于盲目的把json格式的数据当做jsonp格式的数据让ajax处理,造成了这个错误,此时server端代码是这样的:
?
01
@RequestMapping
(value =?
"/getGroupById"
)
02
??
@ResponseBody
03
??
public
?ReturnObject getGroupById(
@RequestParam
(
"id"
) Long id,
04
??????
HttpServletRequest request, HttpServletResponse response){
05
????
String callback = request.getParameter(
"callback"
);
06
????
ReturnObject result =?
null
;
07
????
Group group =?
null
;
08
????
try
?{
09
??????
group = groupService.getGroupById(id);
10
??????
result =?
new
?ReturnObject(group,?
"获取成功"
, Constants.RESULT_SUCCESS);
11
????
}?
catch
?(BusinessException e) {
12
??????
e.printStackTrace();
13
??????
result =?
new
?ReturnObject(group,?
"获取失败"
, Constants.RESULT_FAILED);
14
????
}
15
????
return
?result;
16
??
}
?
至此解决ajax跨域问题的第一种方式就告一段落。?
?
追求永无止境,在google的过程中,无意中发现了一个专门用来解决跨域问题的jQuery插件-jquery-jsonp。
有第一种方式的基础,使用jsonp插件也就比较简单了,server端代码无需任何改动。
来看一下如何使用jquery-jsonp插件解决跨域问题吧。
?
01
var
?url=
"http://localhost:8080/WorkGroupManagment/open/getGroupById"
02
????
+
"?id=1&callback=?"
;
03
$.jsonp({
04
??
"url"
: url,
05
??
"success"
:?
function
(data) {
06
????
$(
"#current-group"
).text(
"当前工作组:"
+data.result.name);
07
??
},
08
??
"error"
:?
function
(d,msg) {
09
????
alert(
"Could not find user "
+msg);
10
??
}
11
});
?
至此两种解决跨域问题的方式就全部介绍完毕。?
原文地址:http://www.congmo.net/blog/2012/06/27/ajax-cross-domain/
?
?
?
http://wuyechun.iteye.com/blog/1130165