我正在尝试在node.js进程中包装PhantomJS脚本。幻像脚本从命令行中提供的参数中获取URL并输出pdf(非常类似于pahntom安装中包含的rasterize.js示例)。
我的幻像脚本工作得很好,只是我的雇主想要一个节点脚本,如果可能的话。没问题,我可以使用node-phantom节点模块来包装它。
但是现在我遇到了绊脚石,我的幻影剧本有:
var page = require('webpage').create();
因此,node.js正在尝试找到一个名为“网页”的模块,该网页是'模块内置于幻像安装中,因此节点无法找到它。据我所知,没有名为'网页的npm模块'。
'网页'使用方式如下:
page.open(address, function (status) {
if (status !== 'success') {
// --- Error opening the webpage ---
console.log('Unable to load the address!');
} else {
// --- Keep Looping Until Render Completes ---
window.setTimeout(function () {
page.render(output);
phantom.exit();
}, 200);
}
});
其中address是命令行中指定的url,输出是另一个参数,即文件的名称和类型。
任何人都可以帮助我吗?这是一个非常抽象的,所以如果我是诚实的,我不会期待太多,但值得一试。
感谢。
编辑 - 约2小时后
我现在有这个抛出PDF:
var phanty = require('node-phantom');
var system = require('system');
phanty.create(function(err,phantom) {
//var page = require('webpage').create();
var address;
var output;
var size;
if (system.args.length < 4 || system.args.length > 6) {
// --- Bad Input ---
console.log('Wrong usage, you need to specify the BLAH BLAH BLAH');
phantom.exit(1);
} else {
phantom.createPage(function(err,page){
// --- Set Variables, Web Address, Output ---
address = system.args[2];
output = system.args[3];
page.viewportSize = { width: 600, height: 600 };
// --- Set Variables, Web Address ---
if (system.args.length > 4 && system.args[3].substr(-4) === ".pdf") {
// --- PDF Specific ---
size = system.args[4].split('*');
page.paperSize = size.length === 2 ? { width: size[0], height: size[1], margin: '0px' }
: { format: system.args[4], orientation: 'portrait', margin: '1cm' };
}
// --- Zoom Factor (Should Never Be Set) ---
if (system.args.length > 5) {
page.zoomFactor = system.args[5];
} else {
page.zoomFactor = 1;
}
//----------------------------------------------------
page.open(address ,function(err,status){
if (status !== 'success') {
// --- Error opening the webpage ---
console.log('Unable to load the address!');
} else {
// --- Keep Looping Until Render Completes ---
process.nextTick(function () {
page.render(output);
phantom.exit();
}, 200);
}
});
});
}
});
但是!它的尺寸不合适!使用幻像&#39;网页创建的页面对象&#39; create()函数在传递URL之前看起来像这样:
而我的节点脚本中的我看起来像这样:
是否可以对属性进行硬编码以实现A4格式化?我错过了哪些属性?
我真是太近了!
答案 0 :(得分:13)
应该是这样的:
var phantom=require('../node-phantom');
phantom.create(function(error,ph){
ph.createPage(function(err,page){
page.open(url ,function(err,status){
// do something
});
});
});
你的困惑是因为你想重用PhantomJS脚本中相同的概念和隐喻。它不起作用。我建议您花一些时间研究包含的节点模型测试,请参阅https://github.com/alexscheelmeyer/node-phantom/tree/master/test。
答案 1 :(得分:6)
使用https://github.com/sgentle/phantomjs-node我使用幻像使用以下代码在nodejs中创建了一个A4页面:
phantom.create(function(ph){
ph.createPage(function(page) {
page.set("paperSize", { format: "A4", orientation: 'portrait', margin: '1cm' });
page.open("http://www.google.com", function(status) {
page.render("google.pdf", function(){
console.log("page rendered");
ph.exit();
})
})
})
});
旁注:
page.set()函数接受您在rasterize.js示例中设置的任何变量。了解如何在上面设置paperSize并将其与rasterize.js中的相关行进行比较