我在 Babel 中使用 ES6 类。我有一个如下所示的 React 组件:
import { Component } from 'react';
export default class MyReactComponent extends Component {
getInitialState() {
return {
foo: true,
bar: 'no'
};
}
render() {
return (
<div className="theFoo">
<span>{this.state.bar}</span>
</div>
);
}
}
它看起来并不像getInitialState
被调用,因为我得到这个错误:Cannot read property 'bar' of null
。