码迷,mamicode.com
首页 > 其他好文 > 详细

React Native使用react-navigation时,设置navigationOptions中Static中使用this注意点

时间:2017-06-28 10:56:59      阅读:6135      评论:0      收藏:0      [点我收藏+]

标签:round   back   str   this   header   ext   背景颜色   white   lis   

使用react-navigation时,单页面设置navigationOptions中,进行Static中调用方法,不能像以下设置

onPress = {()=>this.clickFinishButton()}
export default class extends Component {
  static navigationOptions = ({
    navigation,
    screenProps
  }) => ({
    headerTitle: List实现多选,
    headerTitleStyle: {
      color: white
    },
    headerStyle: {
      backgroundColor: Color.kMainColor // 设置导航栏的背景颜色,headerTintColor设置无效
    },
    headerRight:(
        <NavigationItem
            title=完成
            // 这里注意: static里面不能使用this调用方法,出现clickFinishButton is not function
            // 参考博客: http://www.jianshu.com/p/2f575cc35780
            // onPress={()=>navigation.state.params.navigatePress()}
            onPress = {()=>this.clickFinishButton()}
        />
    )
  });

解决方法:

export default class extends Component {
  static navigationOptions = ({
    navigation,
    screenProps
  }) => ({
    headerTitle: List实现多选,
    headerTitleStyle: {
      color: white
    },
    headerStyle: {
      backgroundColor: Color.kMainColor // 设置导航栏的背景颜色,headerTintColor设置无效
    },
    headerRight:(
        <NavigationItem
            title=完成
            // 这里注意: static里面不能使用this调用方法,出现clickFinishButton is not function
            // 参考博客: http://www.jianshu.com/p/2f575cc35780
            onPress={()=>navigation.state.params.navigatePress()}
            // onPress = {()=>this.clickFinishButton()}
        />
    )
  });
componentDidMount(){
    // 处理数据源
    this.handlerDataSource();
    this.props.navigation.setParams({navigatePress:this.clickFinishButton})
  }
  // 点击完成按钮
  clickFinishButton = ()=> {
      alert(哈哈);
    //   let data = this.state.dataArr;
    //   let selectResultArr = [];
    //   for (var index in data) {
    //         var element = object[index];
    //         if (element.isSelected) {
    //             selectResultArr.push(element);
    //         }
    //   }
    //   alert(selectResultArr.length);
  }

 

React Native使用react-navigation时,设置navigationOptions中Static中使用this注意点

标签:round   back   str   this   header   ext   背景颜色   white   lis   

原文地址:http://www.cnblogs.com/pengsi/p/7088401.html

(0)
(3)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!