博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
每天一点点之 taro 框架 - 生命周期 & state
阅读量:5049 次
发布时间:2019-06-12

本文共 2173 字,大约阅读时间需要 7 分钟。

注意:从vue过来的小朋友要注意,taro直接赋值时不会更新组件的,同react一致更新数据必须调用setState方法,例如:this.setState({name:'张三'}) 

 

1.render函数

  return中的标签可以是但标签,也可以是多标签

 

2.index.js文件内容介绍

import Taro, { Component } from '@tarojs/taro'import { View, Text } from '@tarojs/components'import './index.scss'export default class Index extends Component {  config = {    navigationBarTitleText: '首页'  }  componentWillMount () {     console.log('componentWillMount,第一次渲染之前执行,只执行一次')   }  componentDidMount () {     console.log('componentDidMount,第一次渲染之后执行,只执行一次')      }  componentWillUnmount () {     console.log('componentWillUnmount,卸载时执行')      }  componentWillUpdate () {    console.log('componentWillUpdate,state数据将要更新')      }  componentDidUpdate () {    console.log('componentDidUpdate,state数据更新过后')      }  shouldComponentUpdate (nextProps,nextState) {    // 检查此次setState是否要进行render调用,返回true调用,false不调用    // 一般用来多次的setState调用时,提升render性能    // 判断状态    if(nextState.state.text == '李四')      return true;  }  componentWillReceiveProps(nextProps){    // 会在父组件传递给子组件的参数发生改变时触发  }  // componentDidShow与componentDidHide在reactjs不存在,是taro为了兼容小程序实现的  componentDidShow () {     console.log('componentDidShow,显示时触发')      }  componentDidHide () {     console.log('componentDidHide,隐藏时触发')      }  state = {    name:'Helloworld'  }  getName () {    return 111;  }  render () {    console.log('render,第一次运行')            return (      
获取动态变量:{
this.state.name}
获取动态方法:{
this.getName()}
) }}

 

 

3.tarojs的生命周期

  tarojs有六个生命周期

        
componentWillMount    第一次渲染之前执行,只执行一次
render            渲染页面
componentDidMount    第一次渲染之后执行,只执行一次
componentWillUnmount    卸载时执行
componentWillUpdate     state数据将要更新
componentDidUpdate      state数据更新过后
一下两个在reactjs不存在,是taro为了兼容小程序实现的
componentDidShow      显示时触发
componentDidHide      隐藏时触发
 
运行截图如下:

 

4.setState更新异步问题

setState方法有两个参数, 第一个时对象,第二个时回调函数

componentDidMount () {     console.log('componentDidMount,第一次渲染之后执行,只执行一次')        this.setState({name:'王五'},()=>{      console.log(this.state.name,'回调')    })    console.log(this.state.name,'同步')  }

由运行结果可以看出,setState方法是异步的

 

转载于:https://www.cnblogs.com/cap-rq/p/10900627.html

你可能感兴趣的文章
SVM 实践步骤
查看>>
爬虫之xpath用法
查看>>
Bootstrap--响应式图片轮播
查看>>
使用VBA.NET压缩备份C#工程
查看>>
JAVA常用设计模式整理
查看>>
this详解与面向对象编程
查看>>
谈谈 C++ 中的右值引用
查看>>
树状数组之二维树状数组
查看>>
使用.NET身份验证防止不登录直接访问页面 .
查看>>
九度OJ 1156:谁是你的潜在朋友
查看>>
用户子查询,用case
查看>>
数组与集合List的相互转化
查看>>
Android—基于Socket与上传图片到客户端
查看>>
Docker安装MySQL并配置my.cnf
查看>>
ASSERT_VALID(pDoc)分析
查看>>
Java提高篇——equals()与hashCode()方法详解
查看>>
表单中用户输入"&lt"等转义字符,保存后数据库是原文保存的,但是查看的时候显示的是"<",如何是的&lt;字符在网页原样显示出来。...
查看>>
宗溯软件聚焦2012伦敦奥运会
查看>>
5 python字典dict的操作
查看>>
synchronized的实现原理及锁优化
查看>>