PropType失败。价值未定义

时间:2017-04-14 15:33:48

标签: reactjs redux react-router react-redux react-slingshot

enter image description here

我的目的是做一些非常基本的事情。我只是希望我的名字在渲染时出现在HelloPage容器中,然后点击一下,将我的名字变成" Bob。"我认为我错过了一些愚蠢的东西。

HelloPage.js(容器,我的名字应该出现,但是完全未定义)

import React from 'react';
import PropTypes from 'prop-types';
import {connect} from 'react-redux';
import {bindActionCreators} from 'redux';
import * as actions from '../actions/helloActions';

export const HelloPage = ({name, actions}) => {
  return (
    <div>
      My name is {name}. This is the hello page.
      <div onClick={() => actions.sayHello()}>But my name could be different.</div>
    </div>
  );
};

HelloPage.propTypes = {
  actions: PropTypes.object.isRequired,
  name: PropTypes.string.isRequired
};

function mapStateToProps(state) {
  return {
    name: state.name
  };
}

function mapDispatchToProps(dispatch) {
  return {
    actions: bindActionCreators(actions, dispatch)
  };
}

export default connect(mapStateToProps, mapDispatchToProps)(HelloPage);

我猜测罪魁祸首是在我设置初始状态的reducer中。初始状态是否未及早设置?这部分代码看起来是否合适?

import { SAY_HELLO } from '../constants/actionTypes';
import objectAssign from 'object-assign';
import initialState from './initialState';

export default function helloReducer(state = initialState.hello, action) {

  switch (action.type) {
    case SAY_HELLO:
      return objectAssign({}, state, { name: "Bob" });
    default:
      return state;
  }
}

这是我设置initialState文件的方式:

export default {
  hello: {
    name: 'Gabriel'
  }
};

而且,我将减速器组合在一起的方式:

import { combineReducers } from 'redux';
import fuelSavings from './fuelSavingsReducer';
import hello from './helloReducer';
import {routerReducer} from 'react-router-redux';

const rootReducer = combineReducers({
  fuelSavings,
  hello,
  routing: routerReducer
});

export default rootReducer;

该应用程序的其他容器/组件工作正常,但这个新容器不是。我使用了反应slingshot boilerplate。刚添加了一条额外的路线。我复制了样板中的结构。

1 个答案:

答案 0 :(得分:2)

'name'的初始状态在对象'hello'的第二级定义。

因此,要访问它,您需要将mapStateToProps函数更改为:

function mapStateToProps(state) { 
  return { 
   name: state.hello.name 
  };
}