标签:
前端angularJs 后端jfinal
angular代码
请求url 中带参数
?callback=JSON_CALLBACK
例如 http://127.0.0.1/address/list?callback=JSON_CALLBACK
$http.jsonp(url).success(function (data) { console.log(data); });
jfianl代码
后端返回格式为 callback参数值+(json)
String json = JsonKit.toJson(obj); renderJson(getPara("callback") + "(" + json+ ")");
标签:
原文地址:http://www.cnblogs.com/daqian/p/4324776.html