使用react-redux时this.context为空对象

时间:2016-11-21 04:49:29

标签: reactjs react-router react-redux

我正在将http://x-team.com/2016/02/tutorial-forms-in-react-and-redux/中的代码示例实现到我的代码库中。不幸的是,我为this.context获取了一个空对象。

以下是我的一些代码。路由器路由到包含表单和文本的登录组件。如果有任何事情需要更清楚,请告诉我,我对React很新。

谢谢!

fetch(url, { credentials : 'include'})
  .then((response) => { return response.json();})
  .then((data) => {
    // create a new user
    const newUser = new User(data.public_id, data.yahoo_profile.givenName, data.yahoo_profile.familyName, data.credentials[0].account);

    // once you have the new user.
    // time to update the store.
    dispatch({
      type: 'UPDATE_STORE_WITH_NEW_USER'
      payload: {
        user: newUser,
      },
    });
  });

1 个答案:

答案 0 :(得分:1)

错字:

static contextTypes: {

==>

static contextTypes = {