为啥AJAX请求处理成功了,还报404错误?
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了为啥AJAX请求处理成功了,还报404错误?相关的知识,希望对你有一定的参考价值。
今天遇到了一个很离奇的场景,使用ajax请求后台结果 后台处理成功了页面还报了404错误。程序员不说话,默默上代码:
JS:
[javascript] view plain copy
var save = function()
$.ajax(
url: urlMap.saveOrUpdateGroupInfo,
type: \'post\',
async: false,
dataType: \'json\',
data: $("#groupInfo").serialize()
).done(function(res)
console.log(res);
if(res.success)
else
bootbox.alert(res.msg);
);
后端:
[java] view plain copy
@RequestMapping(value = "/saveOrUpdate", method = RequestMethod.POST)
public ResponseVo saveOrUpdate(String id, String name, String parentId, String parentName, String operate)
ResponseVo result = new ResponseVo();
GroupInfo info = new GroupInfo();
Date now =new Date();
info.setUpdateTime(now);
try
if(operate.equals("add"))
info.setParentId(Integer.parseInt(parentId));
info.setName(name);
info.setCreateTime(now);
groupInfoService.addGroup(info);
else if (operate.equals("edit"))
info.setId(Integer.parseInt(id));
info.setName(name);
info.setParentId(Integer.parseInt(parentId));
groupInfoService.updateGroup(info);
else if (operate.equals("delete"))
groupInfoService.deleteGroup(Integer.parseInt(id));
result.setSuccess(true);
catch (Exception e)
log.error("operate group error."+ JsonUtil.toString(info), e);
result.setSuccess(false);
result.setMsg(e.getMessage());
return result;
挺奇怪吧?
经分析是请求没有返回状态码,这是因为我用的是SpringMVC框架,前后端使用JSON传递数据,因为返回的是对象,而忘记了添加
@ResponseBody
注解,所以 Spring对我的返回值进行了映射,但是映射结果又对应不到视图,所以返回了404
正常后台代码:
[java] view plain copy
@RequestMapping(value = "/saveOrUpdate", method = RequestMethod.POST)
@ResponseBody
public ResponseVo saveOrUpdate(String id, String name, String parentId, String parentName, String operate)
ResponseVo result = new ResponseVo();
GroupInfo info = new GroupInfo();
Date now =new Date();
info.setUpdateTime(now);
try
if(operate.equals("add"))
info.setParentId(Integer.parseInt(parentId));
info.setName(name);
info.setCreateTime(now);
groupInfoService.addGroup(info);
else if (operate.equals("edit"))
info.setId(Integer.parseInt(id));
info.setName(name);
info.setParentId(Integer.parseInt(parentId));
groupInfoService.updateGroup(info);
else if (operate.equals("delete"))
groupInfoService.deleteGroup(Integer.parseInt(id));
result.setSuccess(true);
catch (Exception e)
log.error("operate group error."+ JsonUtil.toString(info), e);
result.setSuccess(false);
result.setMsg(e.getMessage());
return result;
参考技术A
首先我们先看代码:
url: urlMap.saveOrUpdateGroupInfo,
type: 'post',
async: false,
dataType: 'json',
data: $("#groupInfo").serialize()
).done(function(res)
console.log(res);
if(res.success)
if(operate.equals("add"))
info.setParentId(Integer.parseInt(parentId));
info.setName(name);
info.setCreateTime(now);
groupInfoService.addGroup(info);
else if (operate.equals("edit"))
info.setId(Integer.parseInt(id));
info.setName(name);
info.setParentId(Integer.parseInt(parentId));
groupInfoService.updateGroup(info);
else if (operate.equals("delete"))
groupInfoService.deleteGroup(Integer.parseInt(id));
result.setSuccess(true);
catch (Exception e)
log.error("operate group error."+ JsonUtil.toString(info), e);
result.setSuccess(false);
result.setMsg(e.getMessage());
return result;
Spring对我的返回值进行了映射,但映射结果对应不到视图,所以出现404
解决方法:
1.得把Test01写成Servlet,并映射到某个 URL 上。
2.把Test01改成JSP页面,然后直接请求这个JSP页面。
JQuery 中ajax请求为啥总不到后台 浏览器可以正常访问后台 求解!!!
1、检查jquery语法是否正确。2、检查url的是否正确。
3、你请求的后台是不是本页面的后台??我记得早期的时候ajax不能请求本页面,只能请求到别外的一个页面,但后来好像有的加载ajax的dll后好像又可以请求本页面,这一块没有深入研究,如果上面两点都没有问题的话,楼主可以试着将url指向另一个页面去处理。一般项目开发中,都是有专门有代理类来处理类似问题。 参考技术A 一般就是写法错误,多个标点少个标点就这样了
以上是关于为啥AJAX请求处理成功了,还报404错误?的主要内容,如果未能解决你的问题,请参考以下文章
用jquery $.ajax 请求后台老是url %5Bobject%20Object%5D而报404错误,为啥?
jQuery AJAX GET/POST 请求在错误处理程序中返回 404,但从服务器发送了有效响应