在以下代码的第4行,ESLint给我一个解析错误,说:



我想知道为什么会这样吗?该代码可以正常运行。我究竟做错了什么?

import { Component, PropTypes } from 'react';

export default class MainApp extends Component {
  static propTypes = {
    children: PropTypes.any.isRequired
  }

  componentWillMount() {
    require('./styles/main.styl');
  }

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

最佳答案

您不能在类内部具有属性,而只能具有方法。

引用:http://www.2ality.com/2015/02/es6-classes-final.html#inside_the_body_of_a_class_definition

关于javascript - 神秘的ESLint解析错误,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/34125141/

10-11 11:26