React 实用笔记(三)生命周期、Props、State、Flux

tech2023-09-04  97

生命周期 ES6 React.createClass() getDefaultProps() constructor(props) getInitialState() componentWillMount() componentWillMount() render() render() componentDidMount() componentDidMount() componentWillUnMount() componentWillUnMount()

props

验证props 如果我们在创建组件时,能够对属性类型进行验证,那么React将会捕获此类错误,并在控制台输出: 默认props

const classname = createClass({ displayName:"clas
最新回复(0)