使用 deep link 在 React Native 中打开邮件应用程序
using deep link to open mail app in react native
我正在尝试找出 ios 中邮件应用程序的深层链接 url 是什么。
我有一个正在打开的警报,然后当用户按下 'ok' 时,他们将被重定向到默认邮件应用程序。
const openEmailApp = () => {
if (Platform.OS === 'ios') {
Linking.openURL('mailto:');
}
};
我想邮件应用程序深层链接类似于
mailapp://
Alert.alert('Verify Email address', 'Press Ok to open mail app', [
{
text: 'Cancel',
onPress: () => navigation.navigate('Menu'),
style: 'cancel',
},
{text: 'OK', onPress: {openEmailApp}},
]);
我也遇到非法 cb 函数的错误。
cb is not a function. (In 'cb(value)', 'cb' is an instance of Object)
您将 openEmailApp 括在大括号内。这样写
Alert.alert('Verify Email address', 'Press Ok to open mail app', [
{
text: 'Cancel',
onPress: () => navigation.navigate('Menu'),
style: 'cancel',
},
{text: 'OK', onPress: openEmailApp },
]);
我正在尝试找出 ios 中邮件应用程序的深层链接 url 是什么。 我有一个正在打开的警报,然后当用户按下 'ok' 时,他们将被重定向到默认邮件应用程序。
const openEmailApp = () => {
if (Platform.OS === 'ios') {
Linking.openURL('mailto:');
}
};
我想邮件应用程序深层链接类似于
mailapp://
Alert.alert('Verify Email address', 'Press Ok to open mail app', [
{
text: 'Cancel',
onPress: () => navigation.navigate('Menu'),
style: 'cancel',
},
{text: 'OK', onPress: {openEmailApp}},
]);
我也遇到非法 cb 函数的错误。
cb is not a function. (In 'cb(value)', 'cb' is an instance of Object)
您将 openEmailApp 括在大括号内。这样写
Alert.alert('Verify Email address', 'Press Ok to open mail app', [
{
text: 'Cancel',
onPress: () => navigation.navigate('Menu'),
style: 'cancel',
},
{text: 'OK', onPress: openEmailApp },
]);