- setData不执行?
// onload函数调用此函数 getId: function(i,tmpItems){ if(i == 2) return; var that = this; if(i == 0){ var tmpArr = []; db.collection('video').skip(i*20).get({ success:function(res) { for (let j = 0; j < res.data.length; j++) { tmpArr.push(res.data[j]) } that.getId(i+1,tmpArr) } }) }else { var screenHeight = wx.getSystemInfoSync().windowHeight; db.collection('video').skip(i*20).get({ success:function(res) { var tempItems1 = []; for (let j = 0; j < res.data.length; j++) { tempItems1.push(res.data[j]) } // 下面setData为什么不执行 that.setData({ scrollHeight: screenHeight, items: tempItems1.length == 20 ? tmpItems.concat(tempItems1) : tempItems1.concat(tmpItems), videoUrl:totalItems[0].video, }) } }) }
2021-06-09 - db.collection成功回调函数内调用本页面函数为什么不执行?
getId: function(i){ if(i == 2) return; db.collection('video').skip(i*20).get({ success: function(res) { console.log(res) this.getId(i+1)//为什么这句不执行了 } }) }, onLoad: function(options) { getId(0) }
2021-06-07 - 如何在按钮方法里可以使原本已经加载正在播放的视频切换src重新播放另外一个视频?
如何在按钮方法里可以使原本已经加载正在播放的视频切换src重新播放另外一个视频?
2021-05-08