使用phantomjs通过Meteor导出为PDF

时间:2014-07-07 20:34:29

标签: pdf meteor phantomjs

在我的项目中,我需要像报告一样生成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'

任何人都可以帮助我吗?

0 个答案:

没有答案