0

我实际上正在学习 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;
4

1 回答 1

1

作为 Fluxible 用户,您应该受益于Fluxible 插件

以下示例将监听 FooStore 和 BarStore 中的更改,并在实例化时将 foo 和 bar 作为 props 传递给组件。

class Component extends React.Component {
    render() {
        return (
            <ul>
                <li>{this.props.foo}</li>
                <li>{this.props.bar}</li>
            </ul>
        );
    }
}

Component = connectToStores(Component, [FooStore, BarStore], (context, props) => ({
    foo: context.getStore(FooStore).getFoo(),
    bar: context.getStore(BarStore).getBar()
}));

export default Component;

查看fluxible example以获取更多详细信息。代码摘录:

var connectToStores = require('fluxible-addons-react/connectToStores');
var TodoStore = require('../stores/TodoStore');
...

TodoApp = connectToStores(TodoApp, [TodoStore], function (context, props) {
    return {
        items: context.getStore(TodoStore).getAll()
    };
});

因此你不需要调用 setState,所有的 store 数据都会在组件的 props 中。

于 2015-09-06T18:38:55.583 回答