Required request parameter 'pageNum' for method parameter type Integer is not present
时间: 2023-10-05 10:07:57 浏览: 249
完美解决input[type=number]无法显示非数字字符的问题
5星 · 资源好评率100%
This error message means that the server is expecting a request parameter called "pageNum" of type Integer, but it is not present in the request.
To fix this error, you need to include the "pageNum" parameter in your request. Check the API documentation or the server code to see what is the expected format of the request. You may need to add this parameter in the URL or in the request body.
If you are unsure about how to add the parameter, you can try contacting the API provider or the server administrator for assistance.
阅读全文