我正在尝试从智能组件中调度操作。我尝试使用mapDispatchToProps
和this.props.dispatch(actions.getApplications(1))
,但两者都没有将操作绑定到props
。
我不确定是不是因为我的mapStateToProps
不包括在内?我试图包括它,但它也没有用。
感谢任何帮助,我为下面代码块的长度道歉。
import classNames from 'classnames';
import SidebarMixin from 'global/jsx/sidebar_component';
import Header from 'common/header';
import Sidebar from 'common/sidebar';
import Footer from 'common/footer';
import AppCard from 'routes/components/appCard';
import { getApplications } from 'redux/actions/appActions';
import { connect } from 'react-redux'
import { bindActionCreators } from 'redux'
import actions from 'redux/actions';
import { VisibilityFilters } from 'redux/actions/actionTypes';
class ApplicationContainer extends React.Component {
constructor(props){
super(props)
this.state = {
applicants: []
}
this.onDbLoad = this.onDbLoad.bind(this)
}
onDbLoad(){
console.log(this.props.dispatch)
// this.props.getApplications(1)
}
render() {
return (
<Col sm={12} md={4} lg={4}>
<PanelContainer style={panelStyle}>
<Panel>
<PanelBody >
<Grid>
<Row>
{ this.onDbLoad() }
</Row>
</Grid>
</PanelBody>
</Panel>
</PanelContainer>
</Col>
)}
}
function mapDispatchToProps(dispatch){
return bindActionCreators({ getApplications: getApplications },dispatch)
}
export default connect(null, mapDispatchToProps)(ApplicationContainer);
@SidebarMixin
export default class extends React.Component {
render() {
const app = ['Some text', 'More Text', 'Even More Text'];
var classes = classNames({
'container-open': this.props.open
})
return (
<Container id='container' className={classes}>
<Sidebar />
<Header />
<Container id='body'>
<Grid>
<Row>
<ApplicationContainer />
</Row>
</Grid>
</Container>
<Footer />
</Container>
)}
}
答案 0 :(得分:44)
正如您在问题中提到的,mapDispatchToProps
应该是connect
的第二个参数。
如果您没有要完成任何状态映射,可以将null
作为第一个参数传递:
export default connect(null, mapDispatchToProps)(ApplicationContainer);
执行此操作后,this.props.getApplications
将被绑定。
根据您的评论,如果您想要访问this.props.dispatch
INSTEAD绑定操作,只需调用connect()
而不传递任何映射器,默认行为将注入dispatch
。< / p>
如果您希望同时拥有绑定的操作创建者和this.props.dispatch
,则还需要向传递给dispatch
的对象添加mapDispatchToProps
。像dispatch: action => action
这样的东西。或者,由于您没有将所有内容放在根密钥下(例如actions
),您可以这样做:
function mapDispatchToProps(dispatch) {
let actions = bindActionCreators({ getApplications });
return { ...actions, dispatch };
}
答案 1 :(得分:41)
根据http://redux.js.org/docs/FAQ.html#react-props-dispatch的Redux常见问题解答,如果不提供您自己的this.props.dispatch
功能,则mapDispatchToProps
默认可用。如果你做提供mapDispatchToProps
函数,你有责任自己返回一个名为dispatch
的道具。
或者,您可以确保使用Redux的bindActionCreators
实用程序预先绑定了您的操作创建者,并且不必担心在您的组件中使用this.props.dispatch
。