如何在 ionic 2 中使用 pdfmake?
How can use pdfmake in ionic 2?
我正在尝试使用 pdfmake 在 ionic2 中创建 pdf。
我将库添加到我的应用程序中:
$ npm install pdfmake --save
将其导入 class
import { Component } from '@angular/core';
import { NavController, NavParams, LoadingController, ToastController, AlertController } from 'ionic-angular';
import * as pdfmake from 'pdfmake'
但是,当我尝试实例化并使用该方法时,设备中显示的错误:
var dd = {
content: [
'First paragraph',
'Another paragraph, this time a little bit longer to make sure, this line will be divided into at least two lines'
],
pageSize: 'A4',
pageMargins: [25, 25, 25, 25],
};
// download the PDF
var pdf = new pdfmake();
pdf.createPdf( dd ).download();
运行时错误:
fs.readFileSync is not a function
如何在 ionic 2 中使用 pdfmake?可以吗
所以...再次...经过很多天,在 pdfmake 社区的帮助下,我终于让 pdfmake 可以在我的项目上工作。
我把编译好的版本克隆到www文件夹里
$ cd project/www/
$ git clone https://github.com/bpampuch/pdfmake.git
然后我将脚本添加到索引中。
<body>
<!-- Ionic's root component and where the app will load -->
<ion-app></ion-app>
<!-- The polyfills js is generated during the build process -->
<script src="build/polyfills.js"></script>
<!-- The bundle js is generated during the build process -->
<script src="build/main.js"></script>
<script src='pdfmake/build/pdfmake.min.js'></script>
<script src='pdfmake/build/vfs_fonts.js'></script>
</body>
</html>
并将导入替换为...
import * as pdfmake from 'pdfmake/build/pdfmake';
我正在尝试使用 pdfmake 在 ionic2 中创建 pdf。
我将库添加到我的应用程序中:
$ npm install pdfmake --save
将其导入 class
import { Component } from '@angular/core';
import { NavController, NavParams, LoadingController, ToastController, AlertController } from 'ionic-angular';
import * as pdfmake from 'pdfmake'
但是,当我尝试实例化并使用该方法时,设备中显示的错误:
var dd = {
content: [
'First paragraph',
'Another paragraph, this time a little bit longer to make sure, this line will be divided into at least two lines'
],
pageSize: 'A4',
pageMargins: [25, 25, 25, 25],
};
// download the PDF
var pdf = new pdfmake();
pdf.createPdf( dd ).download();
运行时错误:
fs.readFileSync is not a function
如何在 ionic 2 中使用 pdfmake?可以吗
所以...再次...经过很多天,在 pdfmake 社区的帮助下,我终于让 pdfmake 可以在我的项目上工作。
我把编译好的版本克隆到www文件夹里
$ cd project/www/
$ git clone https://github.com/bpampuch/pdfmake.git
然后我将脚本添加到索引中。
<body>
<!-- Ionic's root component and where the app will load -->
<ion-app></ion-app>
<!-- The polyfills js is generated during the build process -->
<script src="build/polyfills.js"></script>
<!-- The bundle js is generated during the build process -->
<script src="build/main.js"></script>
<script src='pdfmake/build/pdfmake.min.js'></script>
<script src='pdfmake/build/vfs_fonts.js'></script>
</body>
</html>
并将导入替换为...
import * as pdfmake from 'pdfmake/build/pdfmake';