我的组件-
ProfileHeader
-通知
发布
- 注释
--LikePost
我希望ProfileHeader组件中的Notifications组件能够在用户对帖子发表评论或喜欢帖子时接收道具。我希望通知组件能够接收道具,以便它可以更新并重新呈现新的通知。我想在下面执行的操作示例:
handleLikeCount(){
let count = this.state.likeCount;
let dummyData = {
username: 'hatface',
userid: '0201',
date_posted: '(data)',
display_picture: '(image)'
}
if(this.state.liked){
this.setState({
likeCount: count - 1,
liked: false
}, () => {
<Notifications notificationFrom={dummyUser} />
});
}
else{
....
}
}
谢谢
答案 0 :(得分:0)
Two ways to do it: