React Router v3은 onEnter, onUpdate 및 onLeave 메소드를 제공합니다. 이는 본질적으로 React의 수명주기 메서드를 다시 만드는 것이었습니다.
v4에서는 <Route>에 의해 렌더링된 구성 요소의 수명 주기 메서드를 사용해야 합니다. onEnter 대신에 componentDidMount 또는 componentWillMount를 사용합니다. onUpdate를 사용하는 경우에는 componentDidUpdate 또는 componentWillUpdate(또는 가능한 경우 componentWillReceiveProps)를 사용할 수 있습니다. onLeave는 componentWillUnmount로 대체될 수 있습니다.
React Router v3은 onEnter, onUpdate 및 onLeave 메소드를 제공합니다. 이는 본질적으로 React의 수명주기 메서드를 다시 만드는 것이었습니다.
v4에서는 <Route>에 의해 렌더링된 구성 요소의 수명 주기 메서드를 사용해야 합니다. onEnter 대신에 componentDidMount 또는 componentWillMount를 사용합니다. onUpdate를 사용하는 경우에는 componentDidUpdate 또는 componentWillUpdate(또는 가능한 경우 componentWillReceiveProps)를 사용할 수 있습니다. onLeave는 componentWillUnmount로 대체될 수 있습니다.