"src/main/git@ustchcs.com:gujinli1118/MCMS.git" did not exist on "ef542c34cc156b5c87bbe345c1cf8057797f02b6"
Commit 7786ecd8 authored by dingzhiwei's avatar dingzhiwei
Browse files

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

parent 60478ac9
...@@ -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