我正在尝试让JSONP给我一个正确的响应并将其传递给我的回调函数jsonp_callback。使用以下代码:How do I set up JSONP?
header('content-type: application/json; charset=utf-8');
$data = array ('a'=>1,'b'=>2,'c'=>3,'d'=>4,'e'=>5);
echo $_GET['jsonpCallback'] . '('.json_encode($data).')';
和
$.ajax({
url: 'jsonp-response.php',
dataType:'jsonp',
jsonp: 'jsonp_callback',
success: function (r){
console.log(r);
}
});
function jsonp_callback (r){
console.log('jsonp_callback:',r);
}
Sofar我收到的响应如下:
jQuery1102035954900085926056_1381230228656({"a":1,"b":2,"c":3,"d":4,"e":5})
查看Testing a static jsonp response的第一个答案,我认为我正确地做了,但我不确定为什么jQuery会给我一个独特的字符串。
我如何让我的回复看起来像这样?
jsonp_callback({"a":1,"b":2,"c":3,"d":4,"e":5})
答案 0 :(得分:1)
以下是我的代码中的代码段..如果它解决了您的问题..
设置jsonpCallBack:'photos'和dataType:'jsonp'
$('document').ready(function() {
var pm_url = 'http://localhost:8080/diztal/rest/login/test_cor?sessionKey=4324234';
$.ajax({
crossDomain: true,
url: pm_url,
type: 'GET',
dataType: 'jsonp',
jsonpCallback: 'photos'
});
});
function photos (data) {
alert(data);
$("#twitter_followers").html(data.responseCode);
};
@Path("/test_cor")
@GET
@Produces(MediaType.TEXT_PLAIN)
public String testCOR(@QueryParam("sessionKey") String sessionKey, @Context HttpServletRequest httpRequest) {
ResponseJSON<LoginResponse> resp = new ResponseJSON<LoginResponse>();
resp.setResponseCode(sessionKey);
resp.setResponseText("Wrong Passcode");
resp.setResponseTypeClass("Login");
Gson gson = new Gson();
return "photos("+gson.toJson(resp)+")"; // CHECK_THIS_LINE
}
答案 1 :(得分:-1)
像这样:
$.ajax({
url: 'jsonp-response.php',
dataType:'jsonp',
jsonp: 'jsonp_callback',
success: jsonp_callback
});
function jsonp_callback (r) {
console.log('jsonp_callback:',r);
}
在您的代码中,您实际上从未使用过您定义的jsonp_callback
函数。你只是写了一些匿名的成功回调。 jQuery注意到你使用了一个匿名函数,这就是为什么它生成这个随机名称,以便它可以调用匿名回调。