1、今天移動端調用接口時候出現下面異常
org.springframework.http.converter.HttpMessageNotReadableException:
JSON parse error: Unrecognized token 'name': was expecting ('true', 'false' or 'null');
nested exception is com.fasterxml.jackson.core.JsonParseException:
Unrecognized token 'name': was expecting ('true', 'false' or 'null')
2、原因:
接口中要求json形式,name是String類型
前端傳值為的是表單類型,出現了上面的錯誤
