获取 access_token返回[object Object]
res.data = [object Object]
我的写法应该没有错 可这个返回值 官方文档也没有解释 什么问题造成的呢?
10 回复
没有啊 上面的截图就是我的源码 你可以复制过去 试试
wx.request({
url: ‘https://api.weixin.qq.com/cgi-bin/token’,
method: ‘GET’,
data: {
grant_type: ‘client_credential’,
appid: ‘wx454713bfb3ae3127’,
secret: ‘35bdae6ccd62f271713319a018650e46’
},
success: function (res) {
console.log(‘token’ + res)
}
})