我有一个喜欢跟随的人。
<div className="horiz_center" onClick={this.textType.bind(this,'text')}>
<img src={StarIcon} className="post_type_icon"/>
<a className="post_type_text">Text</a>
</div>
我可以使用此函数获取值
textType(postType) {
this.setState({postType});
}
我的问题是,如果我想在另一个组件中使用postType
,我该如何将其传递给该组件?
答案 0 :(得分:0)
const {postType} = this.state;
<MyComponent postType={postType} />
在您的组件(MyComponent
)中访问您的属性,如
this.props.postType