React-Native中navigator.pop()后如何更新前一个页面

前端之家收集整理的这篇文章主要介绍了React-Native中navigator.pop()后如何更新前一个页面前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

1、问题提出

React-Native中navigator.pop()后如何更新前一个页面,这是一个最为常见得问题。

2、问题的描述

比如说,我们开发应用的时候,上传头像是一个最为常见的功能,我点击选择打开图库的按钮之后,push到图库的页面,我们在上传成功后,需要pop回到当前页面,并把图片路径传到当前页面

3、React-Native中的解决办法

这个问题对于一个有Android和ios开发经验的程序员首先想到的就是回调函数或者广播机制等。其实在React-Native中同样也可用回调函数解决这个问题。本来想以android来举例实现,最后还是算了直接上React-Native吧。

  1. 在A页面中实现一个声明一个函数refresView()
  2. 在A页面push参数中增加一个回掉函数callBack(msg)
  3. 在B页面pop时候调用callBack将值传回,更新界面

4.代码的实现

4.A页面的实现

  1. /**
  2. * Sample React Native App
  3. * https://github.com/facebook/react-native
  4. * @flow
  5. */
  6.  
  7. import React,{ Component } from 'react';
  8. import {
  9. AppRegistry,StyleSheet,Text,Navigator,ToastAndroid,View
  10. } from 'react-native';
  11. import Button from './Button';
  12. import Test from './test';
  13. var _navigator;
  14. var d;
  15. class Hello2 extends Component {
  16.  
  17. constructor(props){
  18. super(props);
  19. d = this;
  20. this.state = {city:''}
  21. // this.refeshView = this.refeshView.bind(this);
  22. }
  23.  
  24. configureScene(route){
  25. return Navigator.SceneConfigs.FadeAndroid;
  26. }
  27.  
  28. refeshView(msg){
  29. console.log('刷新');
  30. d.setState({'city':msg});
  31. console.log('end');
  32. }
  33.  
  34. renderScene(router,navigator){
  35. console.log(d);
  36. _navigator = navigator;
  37. if(router.id === 'main'){
  38. return <View style={styles.container}>
  39. <Button onPress={() => {
  40. console.log('start');
  41. _navigator.push({title:'MainPage',id:'page',callBack:(msg)=>{ console.log(d); d.refeshView(msg); console.log('end');}}); }} text={'打开'} style={styles.instructions} disabled = {false}/> <Text style={styles.welcome}> {d.state.city} </Text> <Text style={styles.instructions}> </Text> <Text style={styles.instructions}> Press Cmd+R to reload,{'\n'} Cmd+D or shake for dev menu </Text> </View> }else if(router.id === 'page'){ return ( <Test navigator={navigator} router={router}/> ); } } render() { return ( <Navigator initialRoute={{ title: 'Main',id:'main'}} configureScene={this.configureScene} renderScene={this.renderScene} /> ); } } const styles = StyleSheet.create({ container: { flex: 1,justifyContent: 'center',alignItems: 'center',backgroundColor: '#F5FCFF',},welcome: { fontSize: 20,textAlign: 'center',margin: 10,instructions: { textAlign: 'center',color: '#333333',marginBottom: 5,}); AppRegistry.registerComponent('Hello2',() => Hello2);

4.2、B页面的实现

  1. import React,{ Component } from 'react';
  2. import {
  3. AppRegistry,View
  4. } from 'react-native';
  5. var _navigator;
  6. import Button from './Button';
  7. class Test extends Component {
  8.  
  9. render() {
  10. return (
  11. <View style={{flex:1}}>
  12.  
  13. <Button onPress={() => {
  14. console.log(this.props);
  15. this.props.router.callBack('I am a Student');
  16. this.props.navigator.pop();
  17. }} text={'返回'} style={styles.instructions} disabled = {false}/>
  18.  
  19. </View>
  20. );
  21.  
  22. }
  23.  
  24.  
  25.  
  26. }
  27.  
  28. const styles = StyleSheet.create({
  29. instructions: {
  30. textAlign: 'center',color: '#126798',marginTop: 50,}
  31. });
  32.  
  33. module.exports = Test;

代码非常的简单,谢谢大家学习。

5、效果展示

猜你在找的React相关文章