摘要: react组件生命周期分为三大部分: 1、挂载 constructor componentWillMount render componentDidMount组件挂载完成可以请求后台数据 2、更新 componentReceiveProps,只在props更新时调用 shoudComponentUp 阅读全文
posted @ 2021-08-19 01:06 sunny-web 阅读(36) 评论(0) 推荐(0) 编辑
摘要: props是父组件传入的参数,属于外部传入的数据,组件内部无法修改,想要改变props只能传入新值。 state是组件自己的状态,在constructor中初始化,可以通过this.setState()方法修改state的值。 阅读全文
posted @ 2021-08-18 20:54 sunny-web 阅读(262) 评论(0) 推荐(0) 编辑