菜鸟教程小白 发表于 2022-12-13 16:11:08

ios - 为什么 Linking.getInitialURL 总是返回 null?


                                            <p><p>我已成功使用深层链接从共享扩展程序打开我的应用。如果应用程序已经在运行,那么我使用 <code>Linking.addEventListener('url', this.handleOpenURL);</code> </p> 获取 <code>ComponentDidMount</code> 中的信息

<p>如果应用程序尚未运行,我希望能够按照文档 (<a href="https://facebook.github.io/react-native/docs/linking" rel="noreferrer noopener nofollow">https://facebook.github.io/react-native/docs/linking</a>) 使用 <code>Linking.getInitialURL();</code>。除了它总是为我出现 <code>null</code> 。该链接是我的应用程序的打开方式,但无论如何,显示为空。我在 App.js 的 componentDidMount 中有该代码。 </p>

<p>我正在使用 react-native 59.2。 </p>

<p>这是我的 AppDelegate.m </p>

<pre><code>#import &#34;AppDelegate.h&#34;

#import &lt;React/RCTBundleURLProvider.h&gt;
#import &lt;React/RCTRootView.h&gt;
#import &lt;React/RCTLinkingManager.h&gt;

@implementation AppDelegate

- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
{
NSURL *jsCodeLocation;

jsCodeLocation = [ jsBundleURLForBundleRoot:@&#34;index&#34; fallbackResource:nil];

RCTRootView *rootView = [ initWithBundleURL:jsCodeLocation
                                                      moduleName:@&#34;MYMODULENAME&#34;
                                             initialProperties:nil
                                                   launchOptions:launchOptions];
rootView.backgroundColor = ;

self.window = [ initWithFrame:.bounds];
UIViewController *rootViewController = ;
rootViewController.view = rootView;
self.window.rootViewController = rootViewController;
;
return YES;
}

- (BOOL)application:(UIApplication *)application
            openURL:(NSURL *)url
            options:(NSDictionary&lt;UIApplicationOpenURLOptionsKey,id&gt; *)options
{
return ;
}

- (BOOL)application:(UIApplication *)application continueUserActivity:(NSUserActivity *)userActivity
restorationHandler:(void (^)(NSArray * _Nullable))restorationHandler
{
return [RCTLinkingManager application:application
                   continueUserActivity:userActivity
                     restorationHandler:restorationHandler];
}

@end

</code></pre>

<p>如果应用程序已经在后台运行,<code>getInitialURL()</code> 返回启动它的链接,否则我得到 null。我希望获得启动应用程序的链接,即使它没有运行。</p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>响应总是 <code>null</code> <em>if</em> 我正在远程调试。如果远程调试器关闭,那么我会得到正确的 url。由于无法 console.log,因此我使用了 Alert 进行确认。</p></p>
                                   
                                                <p style="font-size: 20px;">关于ios - 为什么 Linking.getInitialURL 总是返回 null?,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/55482111/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/55482111/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: ios - 为什么 Linking.getInitialURL 总是返回 null?