1
0
Code Issues Pull Requests Packages Projects Releases Wiki Activity GitHub Gitee

Automated deployment: Sat Aug 1 17:59:15 UTC 2020 70405ecbf5

This commit is contained in:
jaywcjlove
2020-08-01 17:59:15 +00:00
parent bd3474db05
commit 3e8816199c
2 changed files with 26 additions and 3 deletions

View File

@@ -88,7 +88,7 @@
<li class="tsd-description"> <li class="tsd-description">
<aside class="tsd-sources"> <aside class="tsd-sources">
<ul> <ul>
<li>Defined in <a href="https://github.com/uiwjs/react-native-wechat/blob/56ceded/index.d.ts#L13">index.d.ts:13</a></li> <li>Defined in <a href="https://github.com/uiwjs/react-native-wechat/blob/70405ec/index.d.ts#L13">index.d.ts:13</a></li>
</ul> </ul>
</aside> </aside>
<div class="tsd-comment tsd-typography"> <div class="tsd-comment tsd-typography">
@@ -111,7 +111,7 @@
<li class="tsd-description"> <li class="tsd-description">
<aside class="tsd-sources"> <aside class="tsd-sources">
<ul> <ul>
<li>Defined in <a href="https://github.com/uiwjs/react-native-wechat/blob/56ceded/index.d.ts#L18">index.d.ts:18</a></li> <li>Defined in <a href="https://github.com/uiwjs/react-native-wechat/blob/70405ec/index.d.ts#L18">index.d.ts:18</a></li>
</ul> </ul>
</aside> </aside>
<div class="tsd-comment tsd-typography"> <div class="tsd-comment tsd-typography">
@@ -134,7 +134,7 @@
<li class="tsd-description"> <li class="tsd-description">
<aside class="tsd-sources"> <aside class="tsd-sources">
<ul> <ul>
<li>Defined in <a href="https://github.com/uiwjs/react-native-wechat/blob/56ceded/index.d.ts#L8">index.d.ts:8</a></li> <li>Defined in <a href="https://github.com/uiwjs/react-native-wechat/blob/70405ec/index.d.ts#L8">index.d.ts:8</a></li>
</ul> </ul>
</aside> </aside>
<div class="tsd-comment tsd-typography"> <div class="tsd-comment tsd-typography">

View File

@@ -104,6 +104,29 @@ https:<span class="hljs-regexp">//ui</span>wjs.github.io/apple-app-site-associat
xxx目录 xxx目录
https:<span class="hljs-regexp">//ui</span>wjs.github.io<span class="hljs-regexp">/react-native-wechat/</span>apple-app-site-association</code></pre></details> https:<span class="hljs-regexp">//ui</span>wjs.github.io<span class="hljs-regexp">/react-native-wechat/</span>apple-app-site-association</code></pre></details>
<details>
<summary>iOS: RCTBridge required dispatch_sync to load RCTDevLoadingView.</summary>
<blockquote>
<p>错误内容: RCTBridge required dispatch_sync to load RCTDevLoadingView. This may lead to deadlocks</p>
</blockquote>
<p><strong>错误解决方案</strong>:可以通过下面代码可以解决,事实上我通过关闭 debug 浏览器页面就没有错误消息了。错误原因可能是你打开了 debug 浏览器,但是你模拟器并没有开启 debug 模式。</p>
<pre><code class="language-diff"><span class="hljs-addition">+ #if RCT_DEV</span>
<span class="hljs-addition">+ #import &lt;React/RCTDevLoadingView.h&gt;</span>
<span class="hljs-addition">+ #endif</span>
<span class="hljs-deletion">- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions</span>
{
#ifdef FB_SONARKIT_ENABLED
InitializeFlipper(application);
#endif
RCTBridge *bridge = [[RCTBridge alloc] initWithDelegate:self launchOptions:launchOptions];
<span class="hljs-addition">+ #if RCT_DEV</span>
<span class="hljs-addition">+ [bridge moduleForClass:[RCTDevLoadingView class]];</span>
<span class="hljs-addition">+ #endif</span>
RCTRootView *rootView = [[RCTRootView alloc] initWithBridge:bridge moduleName:@&quot;example&quot; initialProperties:nil];</code></pre>
</details>
<a href="#安装依赖" id="安装依赖" style="color: inherit; text-decoration: none;"> <a href="#安装依赖" id="安装依赖" style="color: inherit; text-decoration: none;">
<h2>安装依赖</h2> <h2>安装依赖</h2>
</a> </a>