时间:2019-05-05 来源:小程序工厂
闵***:
写到data里呗
此***:
我是纯业余的,还是不太明白,我发一段代码具体指导一下可以吗
uploadFile:fail url not in domain list#微信小程序开发
此***:
testone: function (e) { var token; var that = this ; 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) { console.log(res.data) token = res.data.access_token; console.log(token) } }) wx.request({ method: 'POST', url: 'https://www.bigiot.net/oauth/say', data: { access_token: token, id: "5119", c: "play", sign: "首条", }, header: { 'content-type': 'application/json' // 默认值 }, success: function (res) { console.log(res.data) } }) },
闵***: testone: function(e) {
var token;
var that = this;
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) {
console.log(res.data)
token = res.data.access_token;
console.log(token)
}
})
wx.request({
method: 'POST',
url: 'https://www.bigiot.net/oauth/say',
data: {
access_token: token,
id: "5119",
c: "play",
sign: "首条",
},
header: {
'content-type': 'application/json' // 默认值
},
success: function(res) {
console.log(res.data)
}
})
}
把你要设置数据 存到 data里 this.setData({ token: res.data.token })
此***:
图片清楚点,我想把第一个request取的token用到第二个request里,打印出来是有的,但是传不到第二个函数里
怎么做出卡片翻转的效果?
此***:
谢谢,我试试,比我快好多
闵***:写两个方法。第一个方法调用成功的回调里 调用第二个方法 第一个方法里 存一下 token。第二个方法里使用 this.data.token 即可拿到token
此***:
其实你所说的第一个方法我也试了...也没成功,不知道错在哪里...
微信小程序request获取不到数据-微信小程序教程
闵***:
你的data没定义
此***:
不是很懂,大兄弟,不瞒你说,我其实是学机械的,能不能稍微帮我写一段,我试到现在还是没成功...不胜感激