"JSON parse error: Unrecognized token 'pageNumber': was expecting (JSON String, Number, Array, Object or token 'null', 'true' or 'false'); nested exception is com.fasterxml.jackson.core.JsonParseException: Unrecognized token 'pageNumber': was expecting (JSON String, Number, Array, Object or token 'null', 'true' or 'false')\n at [Source: (ByteArrayInputStream); line: 1, column: 12]"
时间: 2024-01-19 12:04:40 浏览: 222
Module parse failed: Unexpected token
5星 · 资源好评率100%
这个错误是JSON解析错误,出现的原因可能是JSON格式不正确或者解析的数据类型与预期不符。错误信息中指出了具体的问题,即在JSON解析过程中出现了无法识别的令牌'pageNumber',但是预期的是一个JSON字符串、数字、数组、对象,或者是null、true或false等特定的标记。建议检查JSON数据格式是否正确。
阅读全文