1、如果用@RequestBody接受boot的参数
1)前端采用的js对象传会报400 JSON转化异常:Resolved [org.springframework.http.converter.HttpMessageNotReadableException: JSON parse error
2)如果没有添加header会报415异常,ajax默认是form提交:HttpMediaTypeNotSupportedException: Content type 'application/x-www-form-urlencoded;charset=UTF-8' not supported]
正确做法:
2)后端使用默认form提交不管前端是否指定head为application/JSON,而且data是不是json字符串都能成功
标签:form,JSON,parse,application,ajax,error From: https://www.cnblogs.com/wenwenzuiniucha/p/16937236.html