我正在使用Nightmare抓取一个网页,并想知道如何在一系列输入上重用一个函数。
假设我有一种检索页面标题的方法
function* test(url,callback) {
var size = { width: 1920, height: 1080, 'use-content-size': true, show: true }
var nightmare = Nightmare(size)
var title = yield nightmare
.goto('http://cnn.com')
.evaluate(function () {
return document.title
});
console.log(title)
yield nightmare.end()
callback()
}
我想在一系列网址上执行此方法。所以我使用异步库来运行整个数组并在test
网址数组上执行urls
函数。
async.each(urls, test, function (err) {
console.log('done!');
});
但是async.each
不支持生成器函数,如何将测试函数更改为普通函数而不是生成器函数。
答案 0 :(得分:0)
我找到了一种方法 - 我需要使用promises库来执行多个功能,这是一个正常的功能。
function test(url){
Promise.resolve( // call for the promises library with the nightmare instance
nightmare
.goto() //all the calls that you need
.wait()
.....
).then(function (result) { //This function will be called when the block of commands is done , with the result.
console.log("Done")
}, function (err) { //Error handling
console.log(err);
});
}