我正在使用phantomjs节点模块来渲染pdf。以下是我的pdf genration代码
phantom.create(function ( ph) {
ph.createPage(function ( page) {
page.set('paperSize',
{
format: 'A4',
orientation: 'potrait',
border:'1cm'
}
);
page.set('content', html, function () {
page.render('../../../output.pdf', function () {
ph.exit();
});
ph.exit();
callback();
});
});
});
页面正确呈现。目前它已保存在服务器上。但我需要为最终用户提供一个选项,以选择他想要呈现PDF的位置。可能吗?我该怎么办?
提前致谢