我想在JS中使用网络搜寻器。 我找到了请求和cheerio模块。 我安装了它们,但是请求模块在我的程序中不起作用
错误是
ERROR Failed to compile with 1 errors 10:59:36
This dependency was not found: * fs in ./~/request/lib/har.js
To install it, you can run: npm install --save fs
所以我也做了npm install --save fs
,但是它无法处理相同的消息。
代码是
getTravelSherenum: function () {
var request = require('request');
var cheerio = require('cheerio');
var url = 'http://news.nate.com/recent?cate=pol&mid=n0201&type=c&date=20170702';
}