"Required String parameter 'ids' is not present"

 遇到了一个未知异常

"Required String parameter 'ids' is not present"

 开发devtools工具,重复报错操作——某 button 问题——进而推出 点击事件 发生错误

检查network,报错:所需的字符串参数“ids”不存在。并且http 200,说明 api 连接与使用正常(前后台正常)

说明是单纯的参数写错了

"Required String parameter 'ids' is not present"

再次查看,传入的参数为null

"Required String parameter 'ids' is not present"

相应行,设置断点,发现传入参数未定义,item中,没有相应的关键字(参数)。

更正选择正确参数(api 所需传参)即可。

"Required String parameter 'ids' is not present"