Reactjs,this.context 在构造方法中未定义

Reactjs, this.context is undfined in constructor method

我实际上是在尝试开发一个简单的组件,该组件对应于一个列表,当我按下一个按钮时,我会再填充一个项目。

我的问题是我使用 ES6,所以我不使用 getInitialState,我使用构造函数进行初始化,如文档中所述。

我的问题是,现在 this.context 在我的构造函数中未定义,我无法直接在构造函数中获取我的第一次数组(或预加载数组):

import React from 'react';
import ListStore from '../stores/ListStore';

class Client extends React.Component {


  constructor(props){
    super(props);
    this.state = this.getStoreState(); // throw me that in getStoreState, this.context is undefined
  }


  static contextTypes = {
      executeAction: React.PropTypes.func.isRequired,
      getStore: React.PropTypes.func.isRequired
  };

  componentDidMount() {
      this.context.getStore(ListStore).addChangeListener(this._onStoreChange.bind(this));
  }

  componentWillUnmount() {
      this.context.getStore(ListStore).removeChangeListener(this._onStoreChange.bind(this));
  }

  _onStoreChange () {
     this.setState(this.getStoreState());
 }

  getStoreState() {
      return {
          myListView: this.context.getStore(ListStore).getItems() // gives undefined
      }
  }


  add(e){
    this.context.executeAction(function (actionContext, payload, done) {
        actionContext.dispatch('ADD_ITEM', {name:'toto', time:new Date().getTime()});
    });
  }

  render() {
      return (
          <div>
              <h2>Client</h2>
              <p>List of all the clients</p>
              <button onClick={this.add.bind(this)}>Click Me</button>
              <ul>
                  {this.state.myListView.map(function(test) {
                    return <li key={test.time}>{test.name}</li>;
                  })}
              </ul>
          </div>
      );
  }
}


export default Client;

我只想在构造函数中预加载数组,无论它是否为空,这正是我的商店 returns :

从 'fluxible/addons/BaseStore' 导入 BaseStore;

class ListStore extends BaseStore {

  constructor(dispatcher) {
      super(dispatcher);
      this.listOfClient = [];
    }

  dehydrate() {
      return {
          listOfClient: this.listOfClient
      };
  }

  rehydrate(state) {
      this.listOfClient = state.listOfClient;
  }


  addItem(item){
    this.listOfClient.push(item);
    this.emitChange();
  }

  getItems(){
    return this.listOfClient;
  }

}

ListStore.storeName = 'ListStore';
ListStore.handlers = {
    'ADD_ITEM': 'addItem'
};

export default ListStore;

感谢您的帮助

你面临的问题是因为你的组件应该是无状态的, 我怎么说都不够,state 应该存在于你的商店中,(UI-state,“可以”存在于你的组件中,但这是值得商榷的)

你应该做的是使用更高级别的组件,将你的 React 组件包装在更高级别的组件中,让该组件从商店中获取状态,并将其作为道具传递给你的组件。

这样你就不需要初始状态,你可以只设置你的 defaultProps 和 propTypes。

这样你的组件是无状态的,你可以充分利用反应生命周期,它也变得可重用,因为你没有在组件中获取实际数据的逻辑。

好读物

希望这对您有所帮助:)