We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
3.2.0
中转HTTP请求,解决跨域问题:/sys/common/transitRESTful 中查询参数对象 variables 参数不为 null ,但是参数为空,导致 RestUtil.request 中 拼接 url 参数发生异常。
/sys/common/transitRESTful
variables
RestUtil.request
当 variables 不为 null 但是参数为空时,会报如下异常:
建议修改如下,增加参数不为空校验:
// 拼接 url 参数 if (variables != null && variables.size() != 0) { url += ("?" + asUrlVariables(variables)); }
The text was updated successfully, but these errors were encountered:
jl
Sorry, something went wrong.
问题已修复,下版本发布
No branches or pull requests
版本号:
3.2.0
问题描述:
中转HTTP请求,解决跨域问题:
/sys/common/transitRESTful
中查询参数对象variables
参数不为 null ,但是参数为空,导致RestUtil.request
中 拼接 url 参数发生异常。截图&代码:
当
variables
不为 null 但是参数为空时,会报如下异常:建议修改如下,增加参数不为空校验:
友情提示(为了提高issue处理效率):
The text was updated successfully, but these errors were encountered: