admin管理员组文章数量:1341445
I have ponent A and B. Component A pass state as prop to ponent, says it's named show
so in my ponent B's render function it will be like this
{this.props.show &&
<div>popup content</div>
}
But how I close it now? I have to pass a flag from ponent B to the parent? as I know it react you can pass stuff back to parent.
I have ponent A and B. Component A pass state as prop to ponent, says it's named show
so in my ponent B's render function it will be like this
{this.props.show &&
<div>popup content</div>
}
But how I close it now? I have to pass a flag from ponent B to the parent? as I know it react you can pass stuff back to parent.
Share asked Mar 21, 2017 at 3:22 Giala JeffersonGiala Jefferson 1,9398 gold badges23 silver badges30 bronze badges 2- Possible duplicate of How to pass data from child ponent to its parent in ReactJS? – Shubham Khatri Commented Mar 21, 2017 at 3:26
- 1 found a nice article about munication between react ponents ctheu./2015/02/12/… – imdzeeshan Commented May 18, 2017 at 20:54
2 Answers
Reset to default 9In order to pass data from a child to a parent, the parent needs to pass a function capable of handling that data to the child.
var Parent = React.createClass({
getData: function(data){
this.setState({childData: data});
}
render: function(){
return(
<Child sendData={this.getData} />
);
}
});
var Child = React.createClass({
textChange: function(event){
this.setState({textString: event.target.value});
}
buttonClick: function(){
this.props.sendData(this.state.textString);
}
render: function(){
<div>
<input type="text" value={this.state.textString}
onChange={this.textChange}/>
<button onClick={this.buttonClick}
</div>
}
});
There are other ways of handling data, and it might be worth your while creating a data store to store global variables and handle various events. In this way you would keep the data flow of your application one way. In smaller scale cases however, this solution should suffice.
Use the eventBus to send/receive date from child/parent ponents respectively.
Example below:
class Date extends Component {
constructor(props) {
super(props);
this.state = {
date:'',
}
this.callback = this.callback.bind(this); // register callback method
}
callback(date){ // callback method to receive data
this.setState({date: date});
}
ponentDidMount(){
EventBus.on("date", this.callback);
}
render() {
<div>
{this.state.date}
</div>
}
}
From any other ponent
handleDayClick(day) {
EventBus.publish("date", day);
}
https://github./arkency/event-bus
本文标签: javascriptpass value from child to parent component in reactStack Overflow
版权声明:本文标题:javascript - pass value from child to parent component in react - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743675557a2520251.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论