请在代码中帮助我。 我有 getInitialState()的问题,代码不起作用: enter image description here
错误在于图片,但我无法看到这一点。
答案 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?