function a() {
$.ajax({
url : "http://localhost:8080/ubi/checkIntegral",
async : true,
data:{"carOwnerID":"111111"},
dataType : 'json',
type : 'GET',
success : function() {
alert("ss");
},
error : function(map){
alert("FALSE");
}
});
}
@RequestMapping(value="/checkIntegral",method = RequestMethod.GET)
@ResponseBody
public Map<String,Long> checkIntegral(@RequestParam String carOwnerID ,HttpServletRequest request,HttpServletResponse response){
Long integral = impl.checkIntegral(Long.valueOf(carOwnerID));
Map<String,Long> map = new HashMap<String, Long>();
map.put("msg", integral);
return map;
}
请求成功有数据返回,很大可能与你的返回数据格式不对有关系。因为你设置了
dataType : 'json' 预期服务器返回的数据类型
。这样往往会进入error
回调。你排除一下返回数据。而且,
error
是有三个回调参数的,请自行打印出来。ajax 跳入error的一些原因