我正在尝试使用 Nightmare js抓取整个页面,并将结果返回给调用函数。为此,通过扩展 Nightmare 示例,我将一个参数传递给了生成器函数。由于我不明白的原因,永远不会调用run()函数。

谢谢你的帮助。

var Nightmare = require('nightmare');
var vo = require('vo');
const fs = require('fs');

url = "http://google.com";

vo( run(url) )(function(err, result) {
    if (err) throw err;
    console.log("end result length: ", result.length);

    fs.writeFile("test.html", result, function(err) {
        if(err) { return console.log(err); } })

 });

function *run(url) {
    console.trace()
    var x = Date.now();
    var nightmare = Nightmare();
    var html = yield nightmare
      .goto(url) // 'http://google.com')
      .evaluate(function() {
        return document.getElementsByTagName('html')[0].innerHTML;
      });

   console.log("done in " + (Date.now()-x) + "ms");
    console.log("result:", html.length);

    yield nightmare.end();
    return html;
}

最佳答案

在上面的示例中,这只是错误的术语。 vo的工作方式如下:

vo( run )(url1, function(err, result) {
    if (err) throw err;
    console.log("end result length: ", result.length);

    fs.writeFile("test.html", result, function(err) {
        if(err) { return console.log(err); } })

 });

关于javascript - 将参数传递给生成器,vo,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/34852109/

10-11 08:51