Required Integer[] parameter ‘xxx‘ is not present”报错的解决方案
Posted 沛沛老爹
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Required Integer[] parameter ‘xxx‘ is not present”报错的解决方案相关的知识,希望对你有一定的参考价值。
背景
在使用批量删除的时候,前端同学说报错了。
自我调试了下,发现Required Integer[] parameter 'xxx' is not present
方法在后端使用的是post的方式。
因为删除只需要用到id
所以在传递参数的时候就使用了Integer[]
请求的时候,使用了@RequestBody的方式。
方法如下:
@ApiOperation(value = "删除")
@RequestMapping(value = "/delete", method = RequestMethod.POST)
public CommonResult<String> delete(@RequestBody Integer[] ids)
//TODO
解决方案
调试了下,发现传递的时候,json串中不传递key是没有问题的。
例如传递参数如下:
[1,2,3,4]
因为前端同学已经固化。那怎么办呢?
只能修改后端了。
不算成功的办法
度娘了下,发现是需要请求参数的时候,说要使用@RequestParam("ids[]")。
尝试了下,发现在x-www-form-urlencoded模式下,输入数组调用是没有问题的,后台可以获取到数据。
但是使用json格式传递的时候,还是会报找不到参数的问题。
怎么办?
应急办法
后来咬咬牙,把参数封装到对象里面,然后调用,发现问题解决了。
现在还没有搞懂问题的原因在哪里
修改后的代码如下
@ApiOperation(value = "删除")
@RequestMapping(value = "/delete", method = RequestMethod.POST)
public CommonResult<String> delete(@RequestParam DeleteRequest request)
//TODO
@Data
public class DeleteRequest extends BaseRequest
List<Integer> ids;
但是我想应该是转换的时候出了一些问题,因为时间的关系,后续再去好好探究问题的根。
以上是关于Required Integer[] parameter ‘xxx‘ is not present”报错的解决方案的主要内容,如果未能解决你的问题,请参考以下文章
在 SVM 上收到错误“TypeError: an integer is required”
Required Integer[] parameter ‘xxx‘ is not present”报错的解决方案
pyinstaller打包任何py文件TypeError: an integer is required (got type bytes)
Python manage.py collectstatic TypeError: an integer is required (got type str)