MHttp icon indicating copy to clipboard operation
MHttp copied to clipboard

上送参数目前不支持List类型。

Open LiuShuai1020 opened this issue 5 years ago • 0 comments

List<String> strings = new ArrayList<>(); strings.put("a"); strings.put("b"); Request.builder().url().post().addParameter("key", strings)

上送参数实际结果:key="[a,b]" 应该上送为:key=[a,b]

目前需要将strings转换为 org.json.JSONArray 才可成功。

LiuShuai1020 avatar Mar 26 '19 09:03 LiuShuai1020