使用 PhantomJS 将多个页面呈现为 pdf 文件

Render multiple pages to pdf files using PhantomJS

我需要有关使用 PhantomJS 将多个页面呈现为 pdf 文件的帮助。一旦 PhantomJS 正在渲染一个页面,另一个实例在完成之前的执行之前不能被调用。我相信它需要某种类型的回调和递归方法。

下面是呈现单个页面的代码:

someUrl = "https://www.google.com/";

var phantom = require('phantom');
phantom.create(function(ph){
    ph.createPage(function(page) {
        page.open(someUrl, function(){
            page.render('google.pdf'); //needs to wait for this to finish
            ph.exit();                 //to call itself for the next url
        });
    });
});

递归需要两件事:

  • 停止递归的条件(列表中剩余的 URL 减少到 0)和
  • 增加或减少的值(列表中的URL在每个"iteration"上被取出)。

代码:

var urls = ["http://domain1.tld", "http://domain2.tld/path"];

var phantom = require('phantom');
phantom.create(function(ph){
    ph.createPage(function(page) {
        function render(urls, callback) {
            if (urls.length == 0) {
                console.log("Exiting...");
                ph.exit();
                if (callback) callback();
                return;
            }
            var url = urls[0];
            page.open(url, function(){
                page.render('screen_'+url.replace(/[\/:]/g, "_")+'.pdf');
                render(urls.slice(1), callback);
            });
        }
        render(urls); // TODO: use a callback if you need to
    });
});