application/x-www-form-urlencode
2017-07-20 本文已影响0人
wyatt_plus
在做ajax请求时,会发生如图中的错误
Paste_Image.pngorg.springframework.web.HttpMediaTypeNotSupportedException: Content type 'application/x-www-form-urlencoded;charset=UTF-8' not supported
解决方法如下:
ajax请求加上这句话:
contentType: "application/json"
Paste_Image.png