我想通过屏幕WebServiceUse.js
传递我的数据: Info
到 Cellz.js
。
我不知道该怎么做,我可以传递一个值,但不是所有数据。
这是代码:
weberviceuse.js:
export default class WebServiceUse extends Component {
constructor(props) {
super(props);
this.state = ({
Info: [],
isLoading: true,
Info1: [],
})
}
componentDidMount() {
fetch('https://*****', {
method: 'POST',
headers: {
'Accept': 'application/json',
'Content-Type': 'application/json',
},
body: JSON.stringify({ id: '1' })
}).then((response) => response.json()).then((responseJson) => {
this.setState({
Info: responseJson.ed5aaf3d933385698d872d0a0d5d4f36,
isLoading: false,
Info1: this.Info,
});
}).catch((error) => {
//console.error(error);
alert(error);
this.props.navigation.navigate('ScreenTwo');
});
}
render() {
return (
<View style={styles.container}>
{this.state.isLoading &&
<View>
<ActivityIndicator color="red" size='large' animating={this.state.isLoading} />
</View>
}
<ScrollView style={styles.welcome}>
{
this.state.Info.map((item) => {
return (
<TouchableOpacity onPress={ () => (this.props.navigation.navigate('ScreenSix', {Info: item.id}))}>
<Text>{item.id}</Text>
<Text>{item.date}</Text>
<Text>{item.interlocuteur}</Text>
<View style={styles.Separator} />
</TouchableOpacity>
)
})
}
</ScrollView>
</View>
);
}
}
cellz.js:
export default class Cellz extends Component {
constructor(props) {
super(props);}
render() {
return (
<View flexDirection='column' style={styles.container}>
<View flexDirection='row' style={styles.welcome}>
<Text>ID: </Text>
<Text>{this.props.navigation.state.params.Info}</Text>
</View>
<View flexDirection='row' style={styles.welcome}>
<Text>Ticket ID: </Text>
<Text>{this.props.navigation.state.params.Info}</Text>
</View>
</View>
);
}
}
我应该怎么做才能传递所有数据Info
?
如果愿意,您可以通过对象,
当前您正在执行以下操作,仅通过item.id
<TouchableOpacity onPress={ () => (this.props.navigation.navigate('ScreenSix', {Info: item.id}))}>
如果需要的话,您可以通过item
对象或任何其他对象以以下方式
<TouchableOpacity onPress={ () => (this.props.navigation.navigate('ScreenSix', {Info: item.id, item: item}))}>
然后在您的Cellz.js
你可以像这样
得到它render() {
const item = this.props.navigation.getParam('item');
return (
...
);
}
查看文档以获取更多信息。