小智 5
你最好的选择可能是这个插件:
https://github.com/cesarvr/pdf-generator
给你的动态页面部分一个像“pdf-area”这样的id,然后在你的.ts文件中选择它,如下所示:
let content = document.getElementById('pdf-area').innerHTML
Run Code Online (Sandbox Code Playgroud)
然后你可以把它变成一个文件或像这样打印
cordova.plugins.pdf.htmlToPDF({
data: content,
type: "base64"
},
(success) => {
// you might have to turn the base64 into a binary blob to save it
// to a file at this point
},
(error) => console.log('error:', error);
);
}
Run Code Online (Sandbox Code Playgroud)