You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Link로 이동할때 같은 컴포넌트면 props가 달라져도 새로 마운트를 안하는 문제가 있음
그렇다고 componentDidUpdate()쓰기엔 child때문에 지속적으로 업데이트 되는듯 하다.
이 문제를 해결하려면 App.js에서 <Router/>에 createElement라는 props를 추가하면 된다 stackoverflow ReactTraining issue
The text was updated successfully, but these errors were encountered:
굳이 모든 page에서 저렇게 새로 마운트 시켜 비용을 늘리는 방법대신 필요한 page에서만 새로 마운트 해주는 방법도 있다 <Route path='somewhere' component={props => <SomeComponent key={some_key} {...props} />} />
Link
로 이동할때 같은 컴포넌트면 props가 달라져도 새로 마운트를 안하는 문제가 있음그렇다고
componentDidUpdate()
쓰기엔 child때문에 지속적으로 업데이트 되는듯 하다.이 문제를 해결하려면
App.js
에서<Router/>
에createElement
라는 props를 추가하면 된다stackoverflow
ReactTraining issue
The text was updated successfully, but these errors were encountered: