Commit c83e7895 authored by dingzhiwei's avatar dingzhiwei
Browse files

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

parent 7786ecd8
...@@ -112,8 +112,8 @@ public class RequestKitBean { ...@@ -112,8 +112,8 @@ public class RequestKitBean {
value = ""; value = "";
}else if(valueObj instanceof String[]){ }else if(valueObj instanceof String[]){
String[] values = (String[])valueObj; String[] values = (String[])valueObj;
for(int i=0; i<values.length; i++){ for(int i=0;i<values.length;i++){
value += values[i] + ","; value = values[i] + ",";
} }
value = value.substring(0, value.length()-1); value = value.substring(0, value.length()-1);
}else{ }else{
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment