当前位置: 首页 > 工具软件 > comby > 使用案例 >

Caused by: com.fasterxml.jackson.databind.exc.MismatchedInputException

孙永嘉
2023-12-01

Caused by: com.fasterxml.jackson.databind.exc.MismatchedInputException: Cannot deserialize instance of java.util.ArrayList out of VALUE_STRING token

原因:
页面传参json数组字符串,导致后台spring无法解析,例如:[{“name”: “1”}, {“name”: “2”}]
解决方法:
把json字符串,转换为json对象。

{attributes: attributes}
改成
{attributes: JSON.parse(attributes)}

 类似资料:

相关阅读

相关文章

相关问答