React Native 中 static的navigationOptions中的点击事件不能用this

 static navigationOptions = ({navigation, screenProps}) =>({
        title: '厂区列表',
        headerRight: 

 componentDidMount(){//在初始化render之后只执行一次,在这个方法内,可以访问任何组件,componentDidMount()方法中的子组件在父组件之前执行


        this.props.navigation.setParams({navigatePress:this.onPressToChangPwd})

    }
 onPressToChangPwd =()=> {//跳回主页退出
        const { navigate } = this.props.navigation;//跳转页面
        navigate('changePwd');
    }


你可能感兴趣的:(React,Native)