标签:res 返回 找不到 app 方法 没有 ejs ice color
后台执行getPlproductList,明明方法执行成功,但是前台却提示404
@RequestMapping(value = "/getPlproductList", method = RequestMethod.POST) public ResponseJson getPlproductList() { return productCategoriesService.getPlproductList(); }
原因: 要加上@ResponseBody 就好
注解@ResponseBody的作用,这个注解的作用是将函数返回值作为请求返回值。
没有这个注解的话,请求的响应应该是一个页面(类似于 " /index ",根据路径找页面,找不到自然是404),不需要页面的话应该加上这个注解。
标签:res 返回 找不到 app 方法 没有 ejs ice color
原文地址:http://www.cnblogs.com/xinde123/p/7446913.html