微信小程序 刷新当前页面的方式
2020-12-24 本文已影响0人
安徒生1997
let that=this;
1.
that.onLoad()
2.
that.onReady() 或者 that.onShow()
3.2s之后执行
setTimeout(()=>{
that.onLoad(arr)
},2000)
let that=this;
that.onLoad()
that.onReady() 或者 that.onShow()
setTimeout(()=>{
that.onLoad(arr)
},2000)