我有两个tabbar:ListMusic |喜爱。
当我在标签ListMusic中将歌曲添加到收藏夹时,如何为标签设置监听器收藏夹知道需要重新加载才能显示新数据。
谢谢!
答案 0 :(得分:1)
您可以设置一个道具状态,该状态将在ListMusic的每次更改时设置,并在key
的父视图组件中将收藏夹用作render()
。因此,只要状态发生变化,它就会重新渲染收藏夹。
示例:
render() {
const unconfirmedErrorMsgToken = this.props.unconfirmedErrorMsgToken;
return (
<View key={this.state.ListMusicSuccess} >
...
</View>
);
}