React.js的语法问题

时间:2017-02-17 22:50:19

标签: javascript reactjs

请在代码中帮助我。 我有 getInitialState()的问题,代码不起作用: enter image description here

错误在于图片,但我无法看到这一点。

1 个答案:

答案 0 :(得分:3)

您正在使用ES6类,这意味着您需要使用构造函数来初始化状态:

class App extends Component {
    constructor(props) {
        super(props);
        this.state = {
            show: true
        };
    }

    // ..
}

参考:What is the difference between using constructor vs getInitialState in React / React Native?