在 React 中,这两种实现之间有什么真正的区别吗?一些朋友告诉我这FirstComponent是模式,但我不明白为什么。看起来更简单,SecondComponent因为渲染只被调用一次。
FirstComponent
SecondComponent
第一的:
import React, { PropTypes } from 'react' class FirstComponent extends React.Component { state = { description: '' } componentDidMount() { const { description} = this.props; this.setState({ description }); } render () { const {state: { description }} = this; return ( <input type="text" value={description} /> ); } } export default FirstComponent;
第二:
import React, { PropTypes } from 'react' class SecondComponent extends React.Component { state = { description: '' } constructor (props) => { const { description } = props; this.state = {description}; } render () { const {state: { description }} = this; return ( <input type="text" value={description} /> ); } } export default SecondComponent;
更新:我改为setState()(this.state = {}感谢 joews),但是,我仍然看不出有什么不同。一个比另一个好吗?
setState()
this.state = {}
应该注意的是,复制永远不会改变状态的属性是一种反模式(在这种情况下直接访问 .props )。如果你有一个最终会改变但以 .props 中的值开头的状态变量,你甚至不需要构造函数调用——这些局部变量在调用父构造函数后被初始化:
class FirstComponent extends React.Component { state = { x: this.props.initialX, // You can even call functions and class methods: y: this.someMethod(this.props.initialY), }; }
这是相当于下面@joews 答案的简写。它似乎只适用于更新版本的 es6 转译器,我在一些 webpack 设置上遇到了问题。如果这对您不起作用,您可以尝试添加 babel 插件babel-plugin-transform-class- properties,或者您可以使用下面@joews 的非速记版本。
babel-plugin-transform-class- properties