react-native 监听返回事件
导航使用的是 @react-navigation/native
componentDidMount(){ let { navigation } = this.props navigation.addListener('beforeRemove', (e) => { e.preventDefault(); // 阻止屏幕离开的默认行为 }) }