首页 > 基础资料 博客日记

JSON parse error: Cannot deserialize value of type `java.util.ArrayList<java.lang.Long>` from Object

2023-10-29 17:56:18基础资料围观367

这篇文章介绍了JSON parse error: Cannot deserialize value of type `java.util.ArrayList<java.lang.Long>` from Object,分享给大家做个参考,收藏Java资料网收获更多编程知识

JSON parse error: Cannot deserialize value of type `java.util.ArrayList<java.lang.Long>` from Object value (token `JsonToken.START_OBJECT`); nested exception is com.fasterxml.jackson.databind.exc.MismatchedInputException: Cannot deserialize value of type `java.util.ArrayList<java.lang.Long>` from Object value (token `JsonToken.START_OBJECT`)\n at [Source: (org.springframework.util.StreamUtils$NonClosingInputStream); line: 1, column: 1]

接口:

public AjaxResult editList( String unit, String ruleValue, @RequestBody List<Long> ids){}

第一次写后端接口 前端传过来三个参数, 其中一个参数类型为id组成的数组, 后端对这个ID数组的类型设置成List<Long>类型, 请求接口报上面的错误,后来给ids前面加了个@RequestBody注解 再次请求又报下面这个错:

Uncaught (in promise) Error: Required request parameter 'ruleIds' for method parameter type List is not present

最后无奈改了前端的请求接口:

export function updateList(data) {

  return request({

    url: `/aaa/list?unit=${data.name}&ruleValue=${data.value}`,

    method: 'put',

    data: data.ids

  })

}


文章来源:https://blog.csdn.net/weixin_50990921/article/details/132063730
本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若内容造成侵权/违法违规/事实不符,请联系邮箱:jacktools123@163.com进行投诉反馈,一经查实,立即删除!

标签:

相关文章

本站推荐

标签云