老是提示找不到fs,我已经按照提示输入了,还是同样得问题?

发布于 2022-09-11 15:24:04 字数 1041 浏览 20 评论 0

在nuxt页面中想写一个爬虫程序
    var request = require("request");
    var cheerio = require("cheerio");

    request('https://www.bing.com',function(err,result){
        if(err){
            console.log("请求错误:"+err);
            return;
        }
        //console.log(result.body)
        var page=cheerio.load(result.body);
        console.log(page('title').text());
    });

老是提示找不到fs,我已经按照提示输入了,还是同样得问题?

warning  in ./pages/main.vue?vue&type=script&lang=js&

"export 'default' (imported as 'mod') was not found in '-!../node_modules/babel-loader/lib/index.js??ref--2-0!../node_modules/vue
-loader/lib/index.js??vue-loader-options!./main.vue?vue&type=script&lang=js&'

 ERROR  Failed to compile with 1 errors                                                                                  17:05:49

This dependency was not found:

* fs in ./node_modules/request/lib/har.js

To install it, you can run: npm install --save fs


 READY  Listening on http://localhost:3000

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

夜灵血窟げ 2022-09-18 15:24:04

fs 不需要安装的,node 的内置库,所以在 node 运行环境里是直接可以用的。你这个异常,可能是 babel 转换的问题。楼主把代码再贴全下~

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文