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传值给上一页面的主要内容,如果未能解决你的问题,请参考以下文章