Page页面生命周期——微信小程序

onLoad:function (options) {
    //页面初始化
    console.log('index Load')
},
onShow:function () {
    //页面显示
    console.log('index Show')
},
onReady:function () {
    //页面渲染完成
    console.log('index Ready')
},
onHide:function () {
    //页面隐藏
    console.log('index Hide')
},
onUnload:function () {
    //页面关闭
    console.log('index Unload')
}
 
打印顺序:
index Load
index.js [sm]:14 index Show
index.js [sm]:18 index Ready
index.js [sm]:26 index Unload
上一篇:python – 部分考虑Sympy中的表达式


下一篇:matplotlib使用时报错RuntimeError: Python is not installed as a framework(一)