POST请求数组有问题~
wx.request({ .... method: "POST" , header: { "content-type" : "application/x-www-form-urlencoded" }, data: { type: 1, goods: [1, 2, 3] }, ...
|
正常情况下,goods: [1, 2, 3]不是应该转换成 goods[]: 1, goods[]: 2, goods[]: 3 的么,结果直接转成 goods: [1, 2, 3] 这样后台跟本就接收不到。