我正在尝试在phantomjs示例中创建自定义页脚: https://github.com/ariya/phantomjs/blob/master/examples/printheaderfooter.js 这是我的代码: var phantom = require('node-phantom');phantom.create(function (err, ph) { ph.cre
这是我的代码:
var phantom = require('node-phantom'); phantom.create(function (err, ph) { ph.createPage(function (err, page) { page.set('paperSize', { format: 'A4', orientation: 'portrait', footer: { contents: ph.callback(function (pageNum, numPages) { if (pageNum == 1) { return ""; } return "<h1>Header <span style='float:right'>" + pageNum + " / " + numPages + "</span></h1>"; }) } }, function () { page.open('http://www.google.com', function () { }) }) }) });
但不幸的是我收到以下错误:
TypeError: Object #<Object> has no method 'callback';
是不是ph不暴露回调方法的错误?
您的脚本中存在两个问题:> ph不是经典的幻像对象,而是代理对象. node-phantom使用web套接字来调用phantomjs.当然,使用此实现会丢失一些功能.
>调用page.set时,函数未被序列化
打印自定义页眉/页脚还需要调用phantom.callback.此方法没有记录,因此不会被node-phantom暴露(也不可能).我们需要找到一种方法在这个包中应用这个方法.
有很多解决方案.这是我可能的解决方案:
在脚本中以字符串序列化函数
var phantom = require('node-phantom'); phantom.create(function (err, ph) { ph.createPage(function (err, page) { page.set('paperSize', { format: 'A4', orientation: 'portrait', header: { height: "1cm", contents: 'function(pageNum, numPages) { return pageNum + "/" + numPages; }' }, footer: { height: "1cm", contents: 'function(pageNum, numPages) { return pageNum + "/" + numPages; }' } }, function () { page.open('http://www.google.fr', function () { page.render('google.pdf'); ph.exit(); }) }) }) });
编辑bridge.js并添加phantom.callback eval.这允许我们重新插入页眉/页脚.contents.
case 'pageSet': eval('request[4].header.contents = phantom.callback('+request[4].header.contents+')'); eval('request[4].footer.contents = phantom.callback('+request[4].footer.contents+')'); page[request[3]]=request[4]; respond([id,cmdId,'pageSetDone']); break;
正如你所看到的那样有效! (谷歌法语)