3

我正在使用这个库进行深度链接是我的 React Native 应用程序(仅涉及 IOS)

如果未安装该应用程序,它将成功打开apple store.

但问题是即使安装了应用程序,它也会打开apple storewithopen按钮。

这是我的代码

AppLink.maybeOpenURL('my apple store app', { appName: 'xxxxx', appStoreId: 'xxxxxx', appStoreLocale: 'xxxxxx', playStoreId: undefined }).then(() => {
   // do stuff
})
  .catch((err) => {
    // handle error
  });

我做错了什么吗?

4

1 回答 1

0

它可以通过链接来完成。

import {Linking} from 'react-native';

如果你想打开任何放它的网址,就像你想打开 facebook 一样,可以这样做:

Linking.openURL(`fb://profile/${pageId}`)
  .catch(err => console.error('An error occurred', err))
于 2020-06-30T16:43:23.460 回答