Spring MVC @RequestBody接收JSON报HTTP 415/400有关问题的解决
Spring MVC @RequestBody接收JSON报HTTP 415/400问题的解决
Ajax请求传@RequestBody(接收JSON)参数时,会报NetworkError: 415 Unsupported Media Type解决办法是:
在Ajax中设置Content-Type为Json;contentType: "application/json; charset=utf-8",而不是params。否则就415错误!
Ajax请求传@RequestBody(接收JSON)参数时,会报NetworkError: 415 Unsupported Media Type解决办法是:
在Ajax中设置Content-Type为Json;contentType: "application/json; charset=utf-8",而不是params。否则就415错误!