ソースを参照

fix(android): crash problem while loading local html resource (#1010)

小米-余乐 5 年 前
コミット
05c286fc23
共有1 個のファイルを変更した1 個の追加1 個の削除を含む
  1. 1
    1
      src/WebView.android.tsx

+ 1
- 1
src/WebView.android.tsx ファイルの表示

@@ -278,7 +278,7 @@ class WebView extends React.Component<AndroidWebViewProps, State> {
278 278
     const webViewStyles = [styles.container, styles.webView, style];
279 279
     const webViewContainerStyle = [styles.container, containerStyle];
280 280
 
281
-    if (source && 'method' in source) {
281
+    if (typeof source !== "number" && source && 'method' in source) {
282 282
       if (source.method === 'POST' && source.headers) {
283 283
         console.warn(
284 284
           'WebView: `source.headers` is not supported when using POST.',