请教如何用 wx.request值传递给下一个wx.request?
微信小程序,我想把 wx.request出来的token值,作为参数传递给下一个wx.request用来获取文件上传的链接,我是小白,该如何写啊? 如下写第二个wx.request拿不到token,无法查找到文件上传链接。 多谢多谢,万分感谢! gettoken: function () { wx.request({ url: 'https://api.weixin.qq.com/cgi-bin/token?grant_type=client_credential&appid=APPID&secret=APPSECRET', header: { 'content-type': 'application/json' // 默认值 }, //success(res) { // console.log(res.data) //} }), wx.request({ url: 'https://api.weixin.qq.com/tcb/uploadfile?access_token=res.data', header: { 'content-type': 'application/json' // 默认值 }, success(res) { console.log(res.data) } }) }