react-native-progress-webview无法解析模块

时间:2019-10-03 08:34:31

标签: react-native webview

我在NPM上发现了这个项目很有趣, https://www.npmjs.com/package/react-native-progress-webview

无论如何我遵循了说明,它显示了以下错误:

error: bundling failed: Error: Unable to resolve module `react-native-progess-webview` from `mycomponent.js`: Module `react-native-progess-webview` does not exist in the Haste module map

我已经安装了'react-native-webview',并且工作正常,但是react-native-progess-webview似乎无法导入。

我只是像这样导入库:

import ProgressWebView from "react-native-progess-webview";

如何解决?

1 个答案:

答案 0 :(得分:1)

我发现它是本教程中的错字,在本教程中是:

import ProgressWebView from "react-native-progess-webview";

但正确的是:

import ProgressWebView from "react-native-progress-webview";

“进度”中有一个“ r”。