需要了解ReactJs中这两个函数之间的区别。 ComponentWillMount(){}与ComponentDidMount(){}
答案 0 :(得分:3)
componentWillMount()在第一次渲染之前被调用,而componentDidMount()在第一次渲染之后被调用。这两个组件仅被调用一次
请注意,最新的React版本v16中不推荐使用componentWillMount()
答案 1 :(得分:1)
讨论最多的话题仍在解释我的理解。
ComponentWillMount
在呈现为名称建议之前执行
ComponentAfterMount
会在渲染组件之前按照名称建议在屏幕上渲染之前执行。
在示例中查看控制台日志
class App extends React.Component {
componentWillMount(){
console.log("console loging before component will mount");
}
componentDidMount(){
console.log("console loging after mounting component");
}
render(){
console.log("rendering component")
return(
<div> component</div>
)
}
}
ReactDOM.render(<App />, document.getElementById('root'))
<script src="https://cdnjs.cloudflare.com/ajax/libs/react/15.1.0/react.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/react/15.1.0/react-dom.min.js"></script>
<div id='root' />
答案 2 :(得分:1)
componentDidMount()
componentWillMount()
您应避免使用 componentWillMount ,而应使用componentDidMount和构造函数 请查看官方react docs以获取更多信息