编程语言
首页 > 编程语言> > javascript-使用pdfmake-在AngularJS中生成pdf工具

javascript-使用pdfmake-在AngularJS中生成pdf工具

作者:互联网

使用“ 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>

我想念什么?为什么这不起作用?

解决方法:

找到了!
我错过了在首页html文件中导入pdfMake插件的机会.

标签:pdfmake,pdf,angularjs,pdf-generation,javascript
来源: https://codeday.me/bug/20191028/1955753.html