gpt4 book ai didi

javascript - 使用导航触发功能组件刷新(React Native)

转载 作者:行者123 更新时间:2023-12-04 08:53:44 27 4
gpt4 key购买 nike

我的应用程序中的一个屏幕是一个功能组件,如下所示:

export default function DonationsScreen({ navigation }) {
const [requests, setRequests] = useState("")

useEffect(() => {
if (!requests) {
getRequests()
}
}, [])

// I omit some of the code here

return (
<SafeAreaView>
<SearchBar lightTheme placeholder="Type Here..." />
<FlatList
data={requests}
renderItem={({ item }) =>
item.donationsLeft > 0 ? (
<DonationItem request={item} navigation={navigation} />
) : null
}
keyExtractor={(item) => item.id}
/>
</SafeAreaView>
)
}

class DonationItem extends React.Component {
render() {
const { navigate } = this.props.navigation
return (
<Card title="hello">
<Button
buttonStyle={styles.donateButton}
onPress={() =>
this.props.navigation.push("Realizar donación", {
request: this.props.request,
})
}
title="Donar"
/>
</Card>
)
}
}
这样您在 DonationItem 中看到的 onPress 就会导航到另一个名为 DonationFormScreen 的屏幕。此屏幕中的内容并不重要,只是在其中一个方法中调用了另一个导航:
this.props.navigation.push('Donación confirmada', {comingFrom: this.state.comingFrom});
最后,“Donación confirmada”是一个屏幕 DonationConfirmationScreen:
export default class DonationConfirmationScreen extends React.Component {

render() {

return(
<View style={styles.confirmation}>
<View style={styles.confirmationContent}>
<Ionicons name='ios-checkmark-circle' color={'green'} size={130}/>
<Button
buttonStyle={styles.button}
title='Listo'
onPress={() => this.props.navigation.navigate("Pedidos")}
/>
</View>
</View>
);
}
}
如您所见 this.props.navigation.navigate("Pedidos")在按钮内部调用并且工作正常。
我想要做的不仅是导航回“Pedidos”(这是我的 DonationsScreen),而且还触发某种刷新,因为我需要再次调用 getRequests()。
我怎样才能做到这一点?

最佳答案

感谢所有回答的人,但我最终使用了其他东西,因为我无法让其他东西发挥作用。

const isFocused = useIsFocused();

const [requests, setRequests] = useState('');

useEffect(() => {
getRequests();
} , [isFocused])
如您所见,我最终使用了 isFocused。我不得不添加这个导入:
import { useIsFocused } from '@react-navigation/native';

关于javascript - 使用导航触发功能组件刷新(React Native),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/63957247/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com