我发现这个项目在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";
如何解决?
2条答案
按热度按时间ffx8fchx1#
我发现这是一个错字在教程中,在教程中它是:
但正确的答案是
“progress”中有一个“r”。
jv4diomz2#
npm i react-native-webview为我工作