idoubi/goz

ExampleRequest_Get_withQuery_arr 这个方法过不了单元测试

hwh820 opened this issue · 1 comments

如果用户输入为
Query: map[string]interface{}{
"iReportID": 20,
"iModuleID": 1,
},
转换string 那也会有报错

目前Query只支持
map[string]string
map[string][]string
两种格式的数据。

你改成

Query: map[string]interface{}{
"iReportID": "20",
"iModuleID": "1",
}

就可以了