Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
jinli gu
Jeepay
Commits
c83e7895
Commit
c83e7895
authored
Apr 16, 2022
by
dingzhiwei
Browse files
修改参数转换json字符串拼接问题
parent
7786ecd8
Changes
1
Hide whitespace changes
Inline
Side-by-side
jeepay-core/src/main/java/com/jeequan/jeepay/core/beans/RequestKitBean.java
View file @
c83e7895
...
...
@@ -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
{
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment