使用“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>
我错过了什么?为什么这不起作用?