我是本机反应的新手。现在,我需要在两个屏幕中实现一个功能。当我单击“ addActivity”场景中的底部时,它将返回到“ homeScene”,它是“ addActivity”的上一场景,并显示“ addActivity”场景中的数据。
我尝试通过地图将数据存储在“ addActivity”场景中:
export const m = new Map();
并在homeScene场景中导入地图
import { m } from './addActivity';
我不确定这种方式是否好。我看到有一些react-native-navigation功能可以传递参数,但是我不知道如何使用它们。 现在最大的是当我从“ addActivity”场景使用goBack()时如何刷新“ homeScene”场景。 有两个场景的代码
homeScene.js
import React, { Component } from 'react';
import {
AppRegistry,
StyleSheet,
Text,
TextInput,
View,
TouchableOpacity,
Dimensions
} from 'react-native';
import { m } from './addActivity';
export default class LeftSideMenu extends Component {
constructor(props) {
super(props);
this.state = {
isOpen: false,
}
add = () => {
const { navigate } = this.props.navigation;
navigate('Add');
}
render() {
return (
<View style={styles.container}>
//I want to show the data here
<Text
style={styles.btText2}>{m.get("title")}</Text>
//This is the bottom to jump to "addActivity" scene
<TouchableOpacity
onPress={this.add}
style={styles.Addbutton}>
<Text
style={styles.btText2}>+</Text>
</TouchableOpacity>
</View>
);
}
}
addActivity.js
import React, { Component } from 'react';
import { View, ScrollView, Dimensions, StyleSheet, Text, Button, TouchableOpacity, Alert } from 'react-native';
import { NavigationPage, ListRow, Input, Select, Label } from 'teaset';
let { height, width } = Dimensions.get('window');
//initial the map
export const m = new Map();
export default class InputExample extends Component {
constructor(props) {
super(props);
this.state = {
length: 0,
title: '',
isVisible: false,
};
Object.assign(this.state, {
valueTitle: null,
});
}
//Return to homeScene
homeScene = () => {
m.set("title", this.valueTitle);
const { goBack } = this.props.navigation;
Alert.alert("Add succeed","return to Homepage",[{text: 'confirm', onPress: () => { goBack(); }}])
}
render() {
return (
<ScrollView style={{ flex: 1 }}>
<ListRow title='Title *' detail={
<Input
style={{ width: 200 }}
size='md'
value={this.state.valueMD}
placeholder=''
onChangeText={text => this.setState({ valueTitle: text })}
/>
} topSeparator='full' />
<TouchableOpacity
onPress={this.homeScene}
style={styles.button}>
<Text
style={styles.btText}>Confirm</Text>
</TouchableOpacity>
</ScrollView>
);
}
}
我希望当我对homeScene使用goBack()时,场景可以刷新并且addActivity场景中的数据可以打印在homeScene上
答案 0 :(得分:1)
为了刷新背面的先前屏幕,您可以在要从某个屏幕返回时更新组件状态的屏幕中使用此代码
componentDidMount()
this.getMoviesFromApiAsync()
this.props.navigation.addListener('willFocus',this._handleStateChange);
}
_handleStateChange = state => {
alert('Refreshed successfully!')
this.getMoviesFromApiAsync()
};
其中getMoviesFromApiAsync()
是包含API调用代码的方法。
OR 您可以使用Redux来实现相同的目的。