使用由 express 提供的 webfrom 提交的值使用 request + Cheerio 启动爬网。
这些部件单独工作,放在一起时出现错误:发送后无法设置标题。
这里有什么问题?
router.post('/', function(req, res){
res.json('processing')
crawl(r.keyword, r.tld, r.brand).then(function(d){
userObject.urlCache = d;
})
})