react navigation传值给上一页面

Posted 木子飞

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了react navigation传值给上一页面相关的知识,希望对你有一定的参考价值。

使用新的导航组件react navigation,传值方式略微发生了一些改变

A页面到B页面

pushaddremark(){
    let _this=this;
    this.props.navigation.navigate("addRemarks",
    {
      info:this.state.strdate+this.state.day+"",

      getparams(textvalue){
        _this.fetchStories(textvalue);
      }

    });
}

B页面代码

constructor(props) {
    super(props);
    this.state =  {
       params:this.props.navigation.state.params,
       todaytime:"this.props.todaytime",
       textvalue:""
    };
}
presssave(){ 
      this.state.params.getparams(this.state.textvalue);
      this.props.navigation.goBack();
}

 

以上是关于react navigation传值给上一页面的主要内容,如果未能解决你的问题,请参考以下文章

Navigator 传值

React 子组件给父组件传值、整个组件、方法

jsp页面传值给另一个jsp页面,怎么接收

使用react-navigation返回上一页面怎么刷新页面

react父子组件传值

在子页面传值给父页面