老是提示找不到fs,我已经按照提示输入了,还是同样得问题?
在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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
fs
不需要安装的,node
的内置库,所以在node
运行环境里是直接可以用的。你这个异常,可能是babel
转换的问题。楼主把代码再贴全下~