componentDidMount()会在组件挂载后自动调用,
componentWillUnmount()会在组件卸载前自动调用
componentDidUpdate()会在UI每次更新后自动调用(即组件挂载成功后,每次调用render方法,都会触发该方法 )
componentDidMount()会在组件挂载后自动调用,
componentWillUnmount()会在组件卸载前自动调用
componentDidUpdate()会在UI每次更新后自动调用(即组件挂载成功后,每次调用render方法,都会触发该方法 )