节点幻影多实例不呈现正确的页面

node phantom multiple instance doesn't rendering right page

我正在使用 phantom 保存多笔交易的 pdf,但有一天我注意到一些奇怪的事情,假设有两个页面 A 和 B 然后我想将它捕获为 pdf,但是当 A.pdf和 B.pdf 创建,它们都显示页面 B。只有当我同时调用它们时才会发生。

示例代码:

function testPhantom(i)
{
    var phantom = require('phantom');
    phantom.create()
    .then(function(ph){phInstance = ph; return ph.createPage();})
    .then(function(page){
        page.property('viewportSize', {width: "210mm", height: "297mm"});  
        page.property('paperSize', {format: 'A4', orientation: 'portrait', margin: '1cm'});
        pageInstance = page;
        if (i == 1)
        {
            return page.open('http://www.google.com/');
        }
        else if (i == 2)
        {
            return page.open('https://www.facebook.com/');
        }
    })
    .then(function(status){
        console.log(status);
        return pageInstance.render('test'+i+'.pdf');
    })
    .then(function(){
        // phInstance.exit();
    })
    .catch(function(error){
        console.log(error);
        // phInstance.exit();
    });
}

testPhantom(1);
testPhantom(2);

使用此代码,它将 google 或两个 facebook。

如果我在函数上调用 exit,警告将显示为

warn: exit() was called before waiting for commands to finish. Make sure you are not calling exit() prematurely

或错误为

Error: Error reading from stdin: Error: This socket has been ended by the other party

我怎样才能拥有不同的 phantom 实例,这样它们才能正常工作

我认为您应该将 phInstancepageInstance 设为局部变量。像这样:

var phInstance;
var pageInstance;
var phantom = require('phantom');
etc.