Browse Source

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

小米-余乐 4 years ago
parent
commit
05c286fc23
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      src/WebView.android.tsx

+ 1
- 1
src/WebView.android.tsx View File

@@ -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.',