我遇到了 mapStateToProps 参数的问题。这似乎是一个非常简单的错误,但我无法弄清楚发生了什么。基本上,我正在尝试做的是使用react-redux切换侧边栏菜单并做出反应。一切运作良好,但我收到以下错误:
未捕获错误:连接组件边栏时,mapStateToProps参数的类型对象值无效。
感谢任何帮助:
索引 app / js / index.js
import React from 'react';
import { render } from 'react-dom';
import { Provider } from 'react-redux';
import configureStore from '../store/configureStore';
import Canvas from '../components/Canvas/Canvas';
const store = configureStore();
render(
<Provider store={store}>
<Canvas />
</Provider>,
document.getElementById('app'),
);
减速
(索引)app / reducers / index.js
import { combineReducers } from 'redux';
import sidebar from './sidebar';
const rootReducer = combineReducers({
sidebar,
});
export default rootReducer;
(补充工具栏)app / reducers / sidebar.js
import {
TOGGLE_SIDEBAR,
} from '../actions';
const sidebar = (state = { value: true }, action) => {
switch (action.type) {
case TOGGLE_SIDEBAR:
debugger;
return action.value;
default:
debugger;
return state.value;
}
}
export default sidebar;
萨加斯
index.js app / sagas / index.js
import { fork } from 'redux-saga/effects';
import { watcher } from './watcher';
function* rootSaga() {
yield [
fork(watcher),
];
}
export default rootSaga;
sidebar.js app / sagas / sidebar.js
import { put } from 'redux-saga/effects';
import {
TOGGLE_SIDEBAR,
} from '../actions';
export function* sidebar () {
try {
yield put ({ type: TOGGLE_SIDEBAR });
} catch (err) {
debugger;
}
}
watcher.js app / sagas / watcher.js
import { takeEvery } from 'redux-saga/effects';
import { sidebar } from './sidebar';
import {
TOGGLE_SIDEBAR,
} from '../actions';
export function* watcher() {
try {
yield takeEvery(TOGGLE_SIDEBAR, sidebar);
} catch (err) { debugger; }
}
操作 app / actions / index.js
export const TOGGLE_SIDEBAR = 'TOGGLE_SIDEBAR';
export const toggleSidebar = (value) => ({
type: TOGGLE_SIDEBAR,
value,
});
容器 SidebarContainer.js app / containers / sidebarContainer.js
import { connect } from 'react-redux';
import {
toggleSidebar as callToggleSidebar,
} from '../actions';
import Sidebar from '../components/Sidebar/Sidebar';
debugger;
const mapStateToProps = (state) => {
debugger;
return {
open: state.sidebar,
}
};
const mapDispatchToProps = dispatch => ({
toggleSidebar: (val) => { dispatch(callToggleSidebar(val)); },
});
export default connect({
mapStateToProps,
mapDispatchToProps,
})(Sidebar);
零件
Sidebar.jsx app / components / Sidebar.jsx
import React from 'react';
import { PropTypes } from 'prop-types';
import './styles/styles.less';
const Sidebar = ({ open, toggleSidebar }) => (
<div className={open ? 'sidebar sidebar-open' : 'sidebar sidebar-closed'}>
<div className='show-hide-container'>
<button onClick={() => toggleSidebar(!open)}>
<i className="fa fa-arrow-right" aria-hidden="true" />
</button>
</div>
Sidebar
</div>
);
Sidebar.propTypes = {
open: PropTypes.bool.isRequired,
toggleSidebar: PropTypes.func.isRequired,
};
export default Sidebar;
答案 0 :(得分:17)
export default connect(
mapStateToProps,
mapDispatchToProps,
)(Sidebar);
请尝试将mapStateToProps
和mapDispatchToProps
作为参数而不是对象传递。
connect
是一个期望状态和调度函数的函数。