React Native 问题:WebView 已从 React Native 中移除

Posted

技术标签:

【中文标题】React Native 问题:WebView 已从 React Native 中移除【英文标题】:React Native problem: WebView has been removed from React Native 【发布时间】:2019-12-12 02:05:43 【问题描述】:

我昨天使用 react-native-cli 构建了新的 React Native 项目。 但是当我用我的安卓手机运行这个项目时,我得到了这个红屏错误。

Invariant Violation:WebView 已从 React Native 中删除。现在可以从“react-native-webview”而不是“react-native”安装和导入它。请参阅“https://github.com/react-native-community/react-native-webview”。

我从未使用过 WebView,这是我的“package.json”。


  "name": "",
  "version": "0.0.1",
  "private": true,
  "scripts": 
    "android": "react-native run-android",
    "ios": "react-native run-ios",
    "start": "react-native start",
    "test": "jest",
    "lint": "eslint ."
  ,
  "dependencies": 
    "react": "16.9.0",
    "react-native": "0.61.5",
    "react-native-image-slider": "^2.0.3",
    "react-native-svg": "^9.13.6",
    "react-navigation": "^4.0.10",
    "react-navigation-drawer": "^2.3.3",
    "react-navigation-stack": "^1.10.3",
    "react-redux": "^7.1.3",
    "redux": "^4.0.4"
  ,
  "devDependencies": 
    "@babel/core": "^7.7.5",
    "@babel/runtime": "^7.7.6",
    "@react-native-community/eslint-config": "^0.0.5",
    "babel-jest": "^24.9.0",
    "eslint": "^6.7.2",
    "install-peers": "^1.0.3",
    "jest": "^24.9.0",
    "metro-react-native-babel-preset": "^0.57.0",
    "react-native-gesture-handler": "^1.5.2",
    "react-native-reanimated": "^1.4.0",
    "react-test-renderer": "16.9.0"
  ,
  "jest": 
    "preset": "react-native"
  

我尝试了一整天来解决这个问题,但我无法解决。 我只是认为'react-native-gesture-handler'会导致这个问题。 任何对 React-Native 有丰富经验的人,请帮助我。 谢谢。

【问题讨论】:

但是,使用了 yarn 而不是 npm。删除 node_modules 文件夹并运行“yarn install”命令,就可以了。我不确定原因。谢谢大家的帮助。 【参考方案1】:

在您的根文件夹中运行此命令: npm i react-native-webview


请先查看这个 npm 包

https://www.npmjs.com/package/react-native-webview


使用以下命令在您的 android 和 IOS 设备中再次运行该项目:react-native run-android 或 react-native run-ios


导入包:

import  WebView  from 'react-native-webview'

使用 webview 作为:

<WebView source= uri: 'https://facebook.github.io/react-native/'  />

【讨论】:

OP 提到他没有在他的代码中导入 WebView 如果您正在使用“expo”工具,请检查:***.com/questions/61169746/…【参考方案2】:

基本上你的猜测是正确的,它受到react-native-gesture-handler的影响。

原因

这是依赖于 webview 的文件。https://github.com/software-mansion/react-native-gesture-handler/blob/1.0.10/GestureHandler.js

解决方案

    react-native-gesture-handler 升级到已经将webview 从react-native 替换为react-native-webview 的最新版本 运行 yarn install 并重建您的项目

【讨论】:

更新 react-native-gesture-handler 后我收到此错误 任务执行失败:react-native-gesture-handler:compileDebugJavaWithJavac【参考方案3】:

尝试

    删除 android 文件夹和 ios 文件夹中的所有构建文件 删除你的 node_modules npm 安装 尝试再次运行它

【讨论】:

您好,感谢您的回复。但是构建文件意味着哪些文件?并在删除 node_modules 文件夹后再次安装 npm? 删除/Users/xxx/projectname/android/build和/Users/xxx/projectname/ios/build中的文件和文件夹...删除node_modules文件夹并再次运行npm install... android和ios文件夹中没有build文件夹。 哦,它是“projectname/android/app/build”文件夹。 是的,如果它不存在意味着你还没有构建/运行应用程序【参考方案4】:

我认为警告中明确提到了:

WebView 已从 React Native 中移除。现在可以从“react-native-webview”而不是“react-native”安装和导入它

我想你现在在你的代码中使用以下一些地方

import 
  WebView,
 from 'react-native';

从现在开始,您将改为执行以下操作 import WebView from 'react-native-webview';

要开始使用 react-native-webivew,您可以关注getting started document here

【讨论】:

感谢您的回复。我已经说过我从未使用过 WebView。 是的,但您可能会不小心从其他来源导入或复制。也许您可以对您的项目进行关键字搜索?只是为了再次确认。 不,我在搜索中找不到单词“WebView”。这够了吗?

以上是关于React Native 问题:WebView 已从 React Native 中移除的主要内容,如果未能解决你的问题,请参考以下文章

WebView(react-native-webview)在 Expo SDK36 中获取错误代码 -1

React-native:如何自动保存 webview 当前网页?

WebView 不一致地显示白屏 react-native

React Native 中的 WebView 整页截图

有啥方法可以在 react-native-webview 中禁用 hapticFeedback

如何在 iOS 的 WebView(react-native-webview) 中设置自定义字体?