我实际上正在学习 reactjs,而且我实际上正在开发一个小 TODO 列表,包裹在一个名为 TODO 的“父组件”中。
在这个父组件内部,我想从相关存储中获取 TODO 的当前状态,然后将此状态作为属性传递给子组件。
问题是我不知道在哪里初始化我的父状态值。
事实上,我使用的是 ES6 语法,所以我没有 getInitialState() 函数。在文档中写到我应该使用组件构造函数来初始化这些状态值。
事实是,如果我想在构造函数中初始化状态,this.context(Fluxible Context)实际上是未定义的。
我决定将初始化移到 componentDidMount 内部,但这似乎是一种反模式,我需要另一种解决方案。你能帮助我吗 ?
这是我的实际代码:
import React from 'react';
import TodoTable from './TodoTable';
import ListStore from '../stores/ListStore';
class Todo extends React.Component {
constructor(props){
super(props);
this.state = {listItem:[]};
this._onStoreChange = this._onStoreChange.bind(this);
}
static contextTypes = {
executeAction: React.PropTypes.func.isRequired,
getStore: React.PropTypes.func.isRequired
};
componentDidMount() {
this.setState(this.getStoreState()); // this is what I need to move inside of the constructor
this.context.getStore(ListStore).addChangeListener(this._onStoreChange);
}
componentWillUnmount() {
this.context.getStore(ListStore).removeChangeListener(this._onStoreChange);
}
_onStoreChange () {
this.setState(this.getStoreState());
}
getStoreState() {
return {
listItem: this.context.getStore(ListStore).getItems() // gives undefined
}
}
add(e){
this.context.executeAction(function (actionContext, payload, done) {
actionContext.dispatch('ADD_ITEM', {name:'toto', key:new Date().getTime()});
});
}
render() {
return (
<div>
<button className='waves-effect waves-light btn' onClick={this.add.bind(this)}>Add</button>
<TodoTable listItems={this.state.listItem}></TodoTable>
</div>
);
}
}
export default Todo;