我看到传递给Redux中mapStateToProps
函数的mapDispatchToProps
和connect
函数将ownProps
作为第二个参数。
[mapStateToProps(state, [ownProps]): stateProps] (Function):
[mapDispatchToProps(dispatch, [ownProps]): dispatchProps] (Object or Function):
?
的可选[ownprops]
参数是什么?
我正在寻找一个额外的例子,因为Returning References
中已有一个例子答案 0 :(得分:93)
如果指定了ownProps
参数,react-redux会将传递给组件的道具传递到connect
函数中。因此,如果您使用这样的连接组件:
import ConnectedComponent from './containers/ConnectedComponent'
<ConnectedComponent
value="example"
/>
ownProps
和mapStateToProps
函数中的mapDispatchToProps
将成为对象:
{ value: 'example' }
您可以使用此对象来决定从这些函数返回的内容。
例如,在博客文章组件:
// BlogPost.js
export default function BlogPost (props) {
return <div>
<h2>{props.title}</h2>
<p>{props.content}</p>
<button onClick={props.editBlogPost}>Edit</button>
</div>
}
您可以返回对特定帖子执行某些操作的Redux操作创建者:
// BlogPostContainer.js
import { bindActionCreators } from 'redux'
import { connect } from 'react-redux'
import BlogPost from './BlogPost.js'
import * as actions from './actions.js'
const mapStateToProps = (state, props) =>
// Get blog post data from the store for this blog post ID.
getBlogPostData(state, props.id)
const mapDispatchToProps = (dispatch, props) => bindActionCreators({
// Pass the blog post ID to the action creator automatically, so
// the wrapped blog post component can simply call `props.editBlogPost()`:
editBlogPost: () => actions.editBlogPost(props.id)
}, dispatch)
const BlogPostContainer = connect(mapStateToProps, mapDispatchToProps)(BlogPost)
export default BlogPostContainer
现在您将使用此组件:
import BlogPostContainer from './BlogPostContainer.js'
<BlogPostContainer id={1} />
答案 1 :(得分:7)
ownProps是指父级传递的道具。
例如,
Parent.jsx:
...
<Child prop1={someValue} />
...
Child.jsx:
class Child extends Component {
props: {
prop1: string,
prop2: string,
};
...
}
const mapStateToProps = (state, ownProps) => {
const prop1 = ownProps.prop1;
const tmp = state.apiData[prop1]; // some process on the value of prop1
return {
prop2: tmp
};
};
答案 2 :(得分:3)
goto-bus-stop的答案很好,但要记住的一点是,根据redux的作者,Abramov / gaearon,在这些函数中使用ownProps会使它们变慢,因为它们必须重新绑定动作创建者当道具改变时。
在此链接中查看他的评论: https://github.com/reduxjs/redux-devtools/issues/250