当我单击平面列表中的一个项目时,我试图导航到另一个屏幕。
我在这里工作了几天的代码,但是现在没有了,当应用程序加载时,即使在我单击任何平面列表项目之前,EventDetailScreen也会打开,然后按单击EventDetailScreen中的“后退”按钮,它使我回到EventListScreen,如果单击任何列表项,则什么也不会发生,也不会进入EventDetailScreen。
我也收到错误消息:
警告:无法在现有状态转换期间(例如,在
render
或其他组件的构造函数中进行更新)。渲染方法应该纯粹是道具和状态的函数;构造函数的副作用是反模式,但可以移至componentWillMount
。
我是React Native的新手,所以我们将不胜感激!
我正在使用:
"react-navigation": "^2.7.0",
"react": "16.4.1",
"react-native": "0.56.0",
我在SO上使用了此答案Navigating to each item in FlatList,以使其开始工作。
EventListScreen.js
export default class EventListScreen extends Component {
constructor() {
super();
this.ref = firebase.firestore();
this.unsubsribe = null;
this.state = {
eventName: '',
eventLocation: '',
loading: true,
events: [],
};
}
componentDidMount() {
console.log('EventsListScreen1');
this.unsubsribe = this.ref.onSnapshot(this.onCollectionUpdate)
}
componentWillUnmount() {
this.unsubsribe();
}
openDetails = () => {
this.props.navigation.navigate('EventDetailScreen');
};
render() {
if (this.state.loading) {
return null;
}
return (
<Container>
<FlatList
data={this.state.events}
// Get the item data by referencing as a new function to it
renderItem={({item}) =>
<Event
openDetails={() => this.openDetails()}
{...item} />}
/>
<View style={{flex: 1}}>
<Fab
active={this.state.active}
direction="left"
containerStyle={{}}
style={{backgroundColor: '#5067FF'}}
position="bottomRight"
onPress={() =>
this.props.navigation.navigate('EventForm')
}>
<Icon
name="ios-add"/>
</Fab>
</View>
</Container>
);
}
Event.js
export default class Event extends Component {
render() {
return (
<Card>
<CardSection>
<Text>{this.props.eventName}</Text>
</CardSection>
<TouchableOpacity
onPress={this.props.openDetails()}
>
<CardSection>
<Image
style={{
width: 350,
height: 300
}}
source={{
uri: this.props.imageDownloadUrl
}}
/>
</CardSection>
<CardSection>
<Text>{this.props.eventLocation}</Text>
</CardSection>
</TouchableOpacity>
</Card>
);
}};
EventDetailScreen.js
export default class EventDetailScreen extends Component {
render() {
/* 2. Get the param, provide a fallback value if not available */
const { navigation } = this.props;
const itemId = navigation.getParam('itemId', 'NO-ID');
return (
<View
style={{
flex: 1,
alignItems: 'center',
justifyContent: 'center'
}}>
<Text>Details Screen</Text>
</View>
);
}}
答案 0 :(得分:2)
这可能是由于Event
组件中的以下行。
<TouchableOpacity
onPress={this.props.openDetails()} // <-- this line to be specific
> ... </>
EventScreenList
呈现列表后,第一行执行openDetails()
方法,该方法会切换屏幕。
您可以使用onPress={() => this.props.openDetails()}
来避免这种情况。
在EventScreenList组件的构造函数或componentDidMount中具有以下内容也是一个好主意,因为这两个函数都使用语句的this
上下文。
this.openDetails = this.openDetails.bind(this);
this.onCollectionUpdate = this.onCollectionUpdate.bind(this);
要检查上述陈述的重要性, 尝试
<TouchableOpacity
onPress={this.props.openDetails} // <-- this line
> ... </>
警告消息归因于状态更新完成之前的导航。