gpt4 book ai didi

javascript - React Navigation - 如何从另一个文件调用函数并在 headerRight onPress 上使用它?

转载 作者:行者123 更新时间:2023-11-28 17:33:35 25 4
gpt4 key购买 nike

我想知道有没有一种方法可以使用 headerRight onPress 来执行诸如调用 Alert 之类的操作:

我在 MyPet.js 中有一个函数,代码如下:

_alert=()=>{
alert('saving')
}

router.js中,我有一个我用来使用如下代码进行导航的所有屏幕的列表:

export const MyPatientStack =  StackNavigator({
MyPatient: {
screen: MyPatient,
navigationOptions: {
tabBarLabel: 'My Patient',
tabBarIcon: ({ tintColor, focused }) => <FontAwesome name="wheelchair" size={25} color={tintColor} />,
headerTitle: 'My Patient',
headerStyle: {
backgroundColor: '#8B0000',
},
headerLeft: <HeaderBackButton tintColor="#FFF" onPress={() => navigation.goBack()} />,
// and here I want to call the function of _alert() from MyPet.js
headerRight: <FontAwesome name='search' size={20} color="#FFF" onPress={_alert()}/>,
headerTintColor: '#fff',
headerTitleStyle: {
fontWeight: 'bold',
textAlign:'center',
flex:1
},
}
}
})

已经尝试过了,代码没有找到变量_alert

我怎样才能做到这一点?

欢迎任何反馈

最佳答案

由于您的导航组件没有引用您的Pet.js组件中的内容,因此您可以尝试以下方法

Pet.js 组件中使用 navigationOptions 作为

// Inside the class
// Since navigationOptions have no access to this parameter of the class, therefore you need to pass them as params
static navigationOptions = ({navigation}) => {
const {params}} = navigation.state;
return {
headerRight: <FontAwesome name='search' size={20} color="#FFF" onPress={() => params.showAlert()}/> />

};
};


componentDidMount() {
this.props.navigation.setParams({
showAlert: this.alertShower
});
}

alertShower = () => Alert.alert('Success', 'Hello')

关于javascript - React Navigation - 如何从另一个文件调用函数并在 headerRight onPress 上使用它?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49670528/

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