如何使用HTML5将html转换为pdf。
我到目前为止所尝试的是
var self = this;
self.pdfName = 'fullrecord.pdf';
var blob = new Blob([self.htmlcontent], {type: 'application/pdf'});
self.pdfurl = URL.createObjectURL(blob);
window.open(self.pdfurl);
问题是,我总是得到一个空白的PDF格式。