小程序
小游戏
企业微信
微信支付
扫描小程序码分享
我有一个疑问,同一个js里,函数之间怎么传值,感觉怎么都传不过去,难受想哭
41 个回答
加粗
标红
插入代码
插入链接
插入图片
上传视频
我问了下还是用的post...,我用post直接显示no token,用post显示no id,我估计可能是这个接口有问题.....头疼
你好,麻烦通过点击下方“反馈信息”按钮,提供出现问题的。
。。。。。。。。
忘了说,我文档看错了,第二个函数用 get 不是post,我自己改了..
没有啊,我传过去了,不过他这个好像是实时更新的
第二个接口 传了access_token 还是提示 access_token没传。。第二个接口 是不是参数有问题。还是过期?
是少了个data...尴尬,现在传过去了,感谢
第一个接口返回你写的是res.access_token应该是res.data.access_token, 然后拿到后去请求第二个接口,第二个接口返回 access_token无效。。
做过一次了 你的页面拿到access_token再去请求一次 还是会出现access_token无效的返回
res.data.access_token
// pages/pay/pay.js Page({ /** * 页面的初始数据 */ data: { grids: [0, 1, 2, 3, 4, 5] }, /** * 生命周期函数--监听页面加载 */ onLoad: function (options) { }, // 连接贝壳物联 testone: function (e) { var that = this; var token wx.request({ method: 'POST', url: 'https://www.bigiot.net/oauth/token', //仅为示例,并非真实的接口地址 data: { client_id: "186", client_secret: "77d1d8d3ee", username: "3942", password: "23d3ea0544", grant_type: "password" }, header: { 'content-type': 'application/json' // 默认值 }, success: function (res) { that.setData({ token:res.access_token }) console.log(res.data) wx.request({ method: 'POST', url: 'https://www.bigiot.net/oauth/say', //仅为示例,并非真实的接口地址 data: { access_token: that.data.token, id: "5119", c: "play", sign: "首条", }, header: { 'content-type': 'application/json' // 默认值 }, success: function (res) { console.log(res.data) } }) } }) }, /** * 生命周期函数--监听页面初次渲染完成 */ onReady: function () { }, /** * 生命周期函数--监听页面显示 */ onShow: function () { }, /** * 生命周期函数--监听页面隐藏 */ onHide: function () { }, /** * 生命周期函数--监听页面卸载 */ onUnload: function () { }, /** * 页面相关事件处理函数--监听用户下拉动作 */ onPullDownRefresh: function () { }, /** * 页面上拉触底事件的处理函数 */ onReachBottom: function () { }, /** * 用户点击右上角分享 */ onShareAppMessage: function () { } })
正在加载...
关注后,可在微信内接收相应的重要提醒。
请使用微信扫描二维码关注 “微信开放社区” 公众号
我问了下还是用的post...,我用post直接显示no token,用post显示no id,我估计可能是这个接口有问题.....头疼
。。。。。。。。
忘了说,我文档看错了,第二个函数用 get 不是post,我自己改了..
没有啊,我传过去了,不过他这个好像是实时更新的
第二个接口 传了access_token 还是提示 access_token没传。。第二个接口 是不是参数有问题。还是过期?
是少了个data...尴尬,现在传过去了,感谢
第一个接口返回你写的是res.access_token应该是res.data.access_token, 然后拿到后去请求第二个接口,第二个接口返回 access_token无效。。
做过一次了 你的页面拿到access_token再去请求一次 还是会出现access_token无效的返回
res.data.access_token
// pages/pay/pay.js Page({ /** * 页面的初始数据 */ data: { grids: [0, 1, 2, 3, 4, 5] }, /** * 生命周期函数--监听页面加载 */ onLoad: function (options) { }, // 连接贝壳物联 testone: function (e) { var that = this; var token wx.request({ method: 'POST', url: 'https://www.bigiot.net/oauth/token', //仅为示例,并非真实的接口地址 data: { client_id: "186", client_secret: "77d1d8d3ee", username: "3942", password: "23d3ea0544", grant_type: "password" }, header: { 'content-type': 'application/json' // 默认值 }, success: function (res) { that.setData({ token:res.access_token }) console.log(res.data) wx.request({ method: 'POST', url: 'https://www.bigiot.net/oauth/say', //仅为示例,并非真实的接口地址 data: { access_token: that.data.token, id: "5119", c: "play", sign: "首条", }, header: { 'content-type': 'application/json' // 默认值 }, success: function (res) { console.log(res.data) } }) } }) }, /** * 生命周期函数--监听页面初次渲染完成 */ onReady: function () { }, /** * 生命周期函数--监听页面显示 */ onShow: function () { }, /** * 生命周期函数--监听页面隐藏 */ onHide: function () { }, /** * 生命周期函数--监听页面卸载 */ onUnload: function () { }, /** * 页面相关事件处理函数--监听用户下拉动作 */ onPullDownRefresh: function () { }, /** * 页面上拉触底事件的处理函数 */ onReachBottom: function () { }, /** * 用户点击右上角分享 */ onShareAppMessage: function () { } })