React LifeCycle
Life Cycle
:各重要な時点で、構成部品が再レンダリングされます.
これはそれらの重要な時を制御する方法です.
ライフサイクルメソッド
- componentDidMount
:画面の後ろに表示
- componentDidUpdate
:構成部品が新しい状態になった後
- componentWillUnmount
:画面が消える前に
ライフサイクルメソッドの使用例
시계 만들기
1. componentDidMount를 활용하여 1초마다 tick함수를 작동하게 하였다.
2. componentWillInmount를 활용하여 시계가 작동하지 않도록 해주었다.
function FormattedDate(props) {
return <h2>It is {props.date.toLocaleTimeString()}.</h2>;
}
class Clock extends React.Component {
constructor(props) {
super(props);
this.state = {date: new Date()};
}
componentDidMount() {
this.timerID = setInterval(
() => this.tick(),
1000
);
}
componentWillUnmount() {
clearInterval(this.timerID);
}
tick() {
this.setState({
date: new Date()
});
}
render() {
return (
<div>
<h1>Hello, world!</h1>
<FormattedDate date={this.state.date} />
</div>
);
}
}
ReactDOM.render(
<Clock />,
document.getElementById('root')
);
クロック完了
Reference
この問題について(React LifeCycle), 我々は、より多くの情報をここで見つけました
https://velog.io/@yesparrot/React-LifeCycle
テキストは自由に共有またはコピーできます。ただし、このドキュメントのURLは参考URLとして残しておいてください。
Collection and Share based on the CC Protocol
시계 만들기
1. componentDidMount를 활용하여 1초마다 tick함수를 작동하게 하였다.
2. componentWillInmount를 활용하여 시계가 작동하지 않도록 해주었다.
function FormattedDate(props) {
return <h2>It is {props.date.toLocaleTimeString()}.</h2>;
}
class Clock extends React.Component {
constructor(props) {
super(props);
this.state = {date: new Date()};
}
componentDidMount() {
this.timerID = setInterval(
() => this.tick(),
1000
);
}
componentWillUnmount() {
clearInterval(this.timerID);
}
tick() {
this.setState({
date: new Date()
});
}
render() {
return (
<div>
<h1>Hello, world!</h1>
<FormattedDate date={this.state.date} />
</div>
);
}
}
ReactDOM.render(
<Clock />,
document.getElementById('root')
);
Reference
この問題について(React LifeCycle), 我々は、より多くの情報をここで見つけました https://velog.io/@yesparrot/React-LifeCycleテキストは自由に共有またはコピーできます。ただし、このドキュメントのURLは参考URLとして残しておいてください。
Collection and Share based on the CC Protocol