美文网首页
react-native 发起监听

react-native 发起监听

作者: 知命者夏洛特 | 来源:发表于2019-04-23 20:51 被阅读0次

发起:
DeviceEventEmitter.emit('login')
调用:
componentDidMount() {
this.addMallToken = DeviceEventEmitter.addListener('login', e => {
this._alertOrNot()
})
}

一定要销毁:
componentWillUnmount() {
this.addMallToken.remove()
}

相关文章

网友评论

      本文标题:react-native 发起监听

      本文链接:https://www.haomeiwen.com/subject/qcobgqtx.html