这个问题是怎么回事啊
来源:7-3 播放历史与本地存储
等峰来87694
2020-07-05
输入正文
//app.js
App({
onLaunch: function() {
if (!wx.cloud) {
console.error('请使用 2.2.3 或以上的基础库以使用云能力')
} else {
wx.cloud.init({
// 此处请填入环境 ID, 环境 ID 可打开云控制台查看
env: 'huanjing-3b3k6',
traceUser: true,
})
}
this.getOpenid()
this.globalData = {
playingMusicId: -1,
openid: -1,
}
},
onShow(options){
console.log('onShow 执行')
console.log(options)
},
setPlayMusicId(musicId) {
this.globalData.playingMusicId = musicId
},
getPlayMusicId() {
return this.globalData.playingMusicId
},
getOpenid() {
wx.cloud.callFunction({
name: 'login'
}).then((res) => {
const openid = res.result.openid
this.globalData.openid = openid
if (wx.getStorageSync(openid) == '') {
wx.setStorageSync(openid, [])
}
})
},
})
1回答
-
等峰来87694
提问者
2020-07-05
已解决
042021-04-10
相似问题