reactjs – 类扩展React.Component不能在React中使用getInitialState

前端之家收集整理的这篇文章主要介绍了reactjs – 类扩展React.Component不能在React中使用getInitialState前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我在React中训练ES6语法,编写组件如下:
export default class Loginform extends React.Component {
    getInitialState() {
        return {
          name: '',password: ''
        };
    };
}

但浏览器引发我一个警告:

Warning: getInitialState was defined on Loginform,a plain JavaScript
class. This is only supported for classes created using
React.createClass. Did you mean to define a state property instead?

我可以处理它与传统的语法var Loginform = React.createClass但什么是正确的ES6语法?

另一个小事情,我认为在传统语法React.createClass是一个对象,所以其中的函数由逗号分隔,但与extends类,它需要分号,我不明白。

您不需要在ES6类方法声明之间使用分号或逗号。

对于ES6类,getInitialState已被弃用,有利于在构造函数中声明初始状态对象:

export default class Loginform extends React.Component {
  constructor(props,context) {
    super(props,context);

    this.state = {
      name: '',password: ''
    };
  };
}
原文链接:https://www.f2er.com/react/302977.html

猜你在找的React相关文章