关于小程序发送请求数据的问题
发布于 6 年前 作者 xia29 17139 次浏览 来自 问答

pay: function () {

    var token = wx.getStorageSync(‘token’);

    var that = this;

    var jsond;

wx.request({

    url: http://zerg.me/api/v1/order,

header: {

token: token,

    “content-type”: “application/x-www-form-urlencoded”

},

data: {

    products: [

{

    “product_id”: 1, “count”: 1

},

{

    “product_id”: ‘1’, “count”: 1

}

]

},

method: ‘POST’,

success: function (res) {

     console.log(res.data);

}

})

},

服务器端:

使用微信发送请求到客户端,取得的数据是

但是使用ajax请求的话: 就是我理想的请求获得的数据

为什么写法一样,会有这么大的差异,错误在哪里?

服务器端我尝试json解析这段object数据,解析出来的数据是空的

微信端请求:

ajax写法请求:

我理想的数据是

我想知道问题到底错在哪里呢 ,

找了一天了 ,  没有找到解决办法

回到顶部