React Native 无法解析请求“/item/index”,

zte4gxcn  于 2023-03-24  发布在  React
关注(0)|答案(2)|浏览(80)

我发现这个项目在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";

如何解决?

ffx8fchx

ffx8fchx1#

我发现这是一个错字在教程中,在教程中它是:

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

但正确的答案是

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

“progress”中有一个“r”。

jv4diomz

jv4diomz2#

npm i react-native-webview为我工作

相关问题