我在 ( React.Component ) 查看了 Facebook 的文档,它提到了如何在客户端/服务器上调用 componentWillMountcomponentDidMount 仅在客户端上调用。 componentWillMount 对服务器做了什么?

最佳答案

componentWillMount 本质上是构造函数。您可以设置不影响渲染的实例属性,从存储 同步 和 setState 中提取数据,以及设置组件时需要运行的其他简单的无副作用代码。

它很少需要,对于 ES6 类根本不需要。

关于reactjs - ReactJS 中的 componentWillMount 和 componentDidMount 有什么区别?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/29899116/

10-12 23:34