首页 > 解决方案 > 反应本机提示用户从 App Store 下载应用程序

问题描述

当应用程序已安装并在浏览器中打开 URL 时,我需要让 react native 应用程序提示我下载linkedIn 应用程序

我想要做的是一旦它打开它浏览器提示用户从 iOS 和 android 的 App Store 下载。可以的话请指教谢谢!

       Linking.canOpenURL('https://www.linkedin.com/in/williamhgates').then(supported => {
            if (supported) {
              Linking.openURL('https://www.linkedin.com/in/williamhgates');
            } else {
              console.log("Don't know how to open URI: " + 'https://www.linkedin.com/in/williamhgates');
            }
          });

标签: androidreactjsreact-nativereact-reduxreact-router

解决方案


推荐阅读