在我的项目中,我需要像报告一样生成PDF Meteor。正在进行研究,我认为最常用的选择是使用phantomjs,但遇到困难。 通过npm安装在phantomjs meteor中并运行以下命令进行一些测试:
var phantom = Meteor.require('phantomjs');
phantom.create(function(ph){
ph.createPage(function(page) {
page.open("http://www.google.com", function(status) {
page.render('google.pdf', function(){
console.log('Page Rendered');
ph.exit();
});
});
});
});
但Meteor还给我发了以下错误:
Object #<Object> has no method 'create'
任何人都可以帮助我吗?