constructor是ES6對類的默認方法,經過 new 命令生成對象實例時自動調用該方法。而且,該方法是類中必須有的,若是沒有顯示定義,則會默認添加空的constructor( )方法。當存在constructor的時候⚠️必須手動調用super方法。若是在constructor中想使用this關鍵字,就必須先調用super方法 MDN-super。 在constructor中若是要訪問this.props須要在super中傳入props。可是不管有沒有定義constructor,super是否傳入props參數,在react的其餘生命週期中this.props都是可使用的,這是React自動附帶的。javascript
class MyClass extends React.component{
constructor(props){
super(props); // 聲明constructor時必須調用super方法
console.log(this.props); // 能夠正常訪問this.props
}
}
複製代碼
constructor 構造方法經常使用來初始化statejava
class MyClass extends React.Component {
constructor(props){
super(props);
this.state = {
list: this.props.List
};
this.state.list = []; //修改state
setTimeout(() => {
this.setState({list: [1, 2, 3]}); //異步操做後 setState 觸發渲染
}, 100);
}
}
複製代碼
須要注意的是,在構造函數裏定義了state,當你想在一些操做後修改state,只須要直接操做this.state
便可, 若是你在構造函數裏執行了異步操做,就須要調用setState
來觸發從新渲染。在其他的地方當你須要改變state的時候只能使用this.setState
,這樣 React 纔會觸發刷新UI渲染。node
Class靜態方法實例屬性 初始化statereact
class ReactCounter extends React.Component {
state = {
list: []
};
}
複製代碼
具體文章可見Class-的靜態方法ios
在組件掛載以前調用且全局只調用一次。若是在這個鉤子裏能夠setState,render後能夠看到更新後的state,不會觸發重複渲染。該生命週期能夠發起異步請求,並setState。(React v16.3後廢棄該生命週期,能夠在constructor中完成設置state)es6
render是一個React組件必須定義的生命週期,用來渲染dom。⚠️不要在render裏面修改state,會觸發死循環致使棧溢出。render必須返回reactDomaxios
render() {
const {nodeResultData: {res} = {}} = this.props;
if (isEmpty(res)) return noDataInfo;
const nodeResult = this.getNodeResult(res);
return (
<div className="workspace-dialog-result"> {nodeResult} </div>
);
複製代碼
在組件掛載完成後調用,且全局只調用一次。能夠在這裏使用refs,獲取真實dom元素。該鉤子內也能夠發起異步請求,並在異步請求中能夠進行setState。dom
componentDidMount() {
axios.get('/auth/getTemplate').then(res => {
const {TemplateList = []} = res;
this.setState({TemplateList});
});
}
複製代碼
props發生變化以及父組件從新渲染時都會觸發該生命週期,在該鉤子內能夠經過參數nextProps獲取變化後的props參數,經過this.props訪問以前的props。該生命週期內能夠進行setState。(React v16.3後廢棄該生命週期,能夠用新的週期 static getDerivedStateFromProps
代替)異步
組件掛載以後,每次調用setState後都會調用shouldComponentUpdate判斷是否須要從新渲染組件。默認返回true,須要從新render。返回false則不觸發渲染。在比較複雜的應用裏,有一些數據的改變並不影響界面展現,能夠在這裏作判斷,優化渲染效率。函數
shouldComponentUpdate返回true或者調用forceUpdate以後,componentWillUpdate會被調用。不能在該鉤子中setState,會觸發重複循環。(React v16.3後廢棄該生命週期,能夠用新的週期 getSnapshotBeforeUpdate
)
除了首次render以後調用componentDidMount,其它render結束以後都是調用componentDidUpdate。該鉤子內setState有可能會觸發重複渲染,須要自行判斷,不然會進入死循環。
componentDidUpdate() {
if(condition) {
this.setState({..}) // 設置state
} else {
// 再也不設置state
}
}
複製代碼
組件被卸載的時候調用。通常在componentDidMount裏面註冊的事件須要在這裏刪除。
class LifeCycle extends React.Component {
constructor(props) {
super(props);
this.state = {str: "hello"};
}
componentWillMount() {
alert("componentWillMount");
}
componentDidMount() {
alert("componentDidMount");
}
componentWillReceiveProps(nextProps) {
alert("componentWillReceiveProps");
}
shouldComponentUpdate() {
alert("shouldComponentUpdate");
return true; // 記得要返回true
}
componentWillUpdate() {
alert("componentWillUpdate");
}
componentDidUpdate() {
alert("componentDidUpdate");
}
componentWillUnmount() {
alert("componentWillUnmount");
}
render() {
alert("render");
return(
<div> <span><h2>{parseInt(this.props.num)}</h2></span> <br /> <span><h2>{this.state.str}</h2></span> </div>
);
}
}
複製代碼
class Example extends React.Component {
static getDerivedStateFromProps(nextProps, prevState) {
// 沒錯,這是一個static
}
}
複製代碼
class Example extends React.Component {
getSnapshotBeforeUpdate(prevProps, prevState) {
// ...
}
}
複製代碼