使用reactjs在组件之间传递数据

时间:2017-06-06 07:24:34

标签: reactjs components

我有一个喜欢跟随的人。

<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,我该如何将其传递给该组件?

1 个答案:

答案 0 :(得分:0)

const {postType} = this.state;
<MyComponent postType={postType} />

在您的组件(MyComponent)中访问您的属性,如

this.props.postType