什么时候传递道具给super()很重要,为什么?

class MyComponent extends React.Component {
  constructor(props) {
    super(); // or super(props) ?
  }
}

当前回答

Super()用于调用父构造函数。

Super (props)将把道具传递给父构造函数。

从你的例子中,super(props)会调用React。组件构造函数将props作为参数传入。

更多关于super的信息: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators/super

其他回答

按照源代码

function ReactComponent(props, context) {
  this.props = props;
  this.context = context;
}

你每次有道具的时候都要传递道具,不要把道具放到这里。手动道具。

这是我做的小提琴:jsfiddle.net。它表明默认情况下道具不是在构造函数中分配的。据我所知,它们是在方法React.createElement中分配的。因此,super(props)应该只在超类的构造函数手动将props赋给this.props时调用。如果你只是扩展React。组件调用super(props)不会对props做任何事情。也许它会在React的下一个版本中被改变。

当你把道具传递给super时,道具被分配给this。看看下面的场景:

constructor(props) {
    super();
    console.log(this.props) //undefined
}

当你这样做的时候:

constructor(props) {
    super(props);
    console.log(this.props) //props will get logged.
}

Super()用于调用父构造函数。

Super (props)将把道具传递给父构造函数。

从你的例子中,super(props)会调用React。组件构造函数将props作为参数传入。

更多关于super的信息: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators/super

这里我们不会在构造函数中获取这个,所以它将返回undefined,但是我们可以在构造函数外获取这个

class MyComponent extends React.Component {
  constructor() {
    console.log(this); // Reference Error i.e return undefined
  }

  render() {
    return <div>Hello {this.props.name}</div>;
  }
}

如果我们使用super(),那么我们也可以在构造函数中获取“this”变量

class MyComponent extends React.Component {
  constructor() {
    super();
    console.log(this); // this logged to console
  }

  render() {
    return <div>Hello {this.props.name}</div>;
  }
}

当我们使用super();我们可以得到这个,但是这个。Props在构造函数中没有定义。除了构造函数,还有这个。Props不会返回undefined。

如果我们使用super(道具),那么我们可以使用这个。Props在构造函数中的值

苏菲·阿尔珀特的回答

如果你想用这个。构造函数中的道具,需要传递 为超级喝彩。否则,没关系,因为React会设置.props 调用后立即从外部调用实例 构造函数。