前端发送简单的 json 后端使用 参数去接收 接收不到?
前端发送方式如下:
http://localhost:8080/user/sendMsg post发送的
请求体:
{
"phone" : "18688866688"
}
后端代码如下:
@RestController
@RequestMapping("/user")
public class UserController {
@PostMapping("/sendMsg")
public R<String> sendMsg(String phone){
log.info("接收到前端发来的请求: {}",phone);
return null;
}
}
图片: