@ResponseBody通常是放在方法上,主要是在前端页面异步请求的时候,返回数据使用。直白点说就是加上这个注解之后,return的数据不会解析成返回跳转路径,而是会默认放在 response body 中,作为json返回,前端方便取值。
举个栗子:
@RequestMapping("/login")
@ResponseBody
public User login(User user){
return user;
}
User字段:userName, pwd
那么在前台接收到的数据为:‘{"userName":"xxx","pwd":"xxx"}‘
原文地址:https://www.cnblogs.com/dk1024/p/10338937.html
时间: 2024-11-05 14:08:31