3

使用“bower install pdfmake”,我已经下载了相关文件以便使用 pdfMake。

我想以角度使用这个库。

这是我的示例代码

角度控制器:

    $scope.pdfMaker = function(){
        var docDefinition = { content: 'This is an sample PDF printed with pdfMake' };
        pdfMake.createPdf(docDefinition).open();
    }

html:

 <button ng-click="pdfMaker()">run pdf</button>

我错过了什么?为什么这不起作用?

4

1 回答 1

4

找到了!我错过了在我的家庭 html 文件中导入 pdfMake 插件。

于 2014-12-11T21:36:55.220 回答