修改参数转换json字符串拼接问题

This commit is contained in:
dingzhiwei 2022-04-16 01:37:27 +08:00
parent 7786ecd804
commit c83e7895a1
1 changed files with 2 additions and 2 deletions

View File

@ -112,8 +112,8 @@ public class RequestKitBean {
value = "";
}else if(valueObj instanceof String[]){
String[] values = (String[])valueObj;
for(int i=0; i<values.length; i++){
value += values[i] + ",";
for(int i=0;i<values.length;i++){
value = values[i] + ",";
}
value = value.substring(0, value.length()-1);
}else{