但使书种多,会有岁稔时。这篇文章主要讲述uni-app学习记录07-生命周期相关的知识,希望能为你提供帮助。
< template> < view class="content"> 我是首页 < /view> < /template> < script> export default { data() { return { title: ‘Hello‘ } }, // onLoad是页面初始化的时候 全局执行一次 onLoad() { console.log(‘我是onLoad‘) }, // onShow只要显示了该页面就会触发 全局执行多次 onShow() { console.log(‘我是onShow‘) }, // onHide只要离开当前页面就会触发 全局执行多次 onHide() { console.log(‘我是onHide‘) }, // onRead页面初次完成渲染是触发 全局一次 onReady() { console.log(‘我是onReady‘) }, methods: {} } < /script> < style> .content { display: flex; flex-direction: column; align-items: center; justify-content: center; } < /style>
【uni-app学习记录07-生命周期】
推荐阅读
- crowdfunding项目03——mapper映射错误
- Android(导入所需的系统jar包到Android studio)
- MyBatis 中 Mapper 接口的使用原理
- Cannot access org.springframework.context.ConfigurableApplicationContext
- Django 创建app 应用,数据库配置
- 最新机器人面试题精品推荐
- 推荐!Ruby on Rails面试题精品合集
- call, apply, bind
- What happened when new an object in JVM ?