我有一个HTML模板,现在当我单击PDF按钮时,该模板必须显示在iframe
或embed
内,并且必须处于iframe
或embed,
如果用户需要,他可以单击下载图标以下载文件。
我希望我的演示以这种方式工作,我不知道该如何解决,请问有人可以帮助我解决这个问题。
演示:DEMO
TS:
captureScreen(){
// logic to be written here
let doc = new jsPDF();
let currentReportUrl = doc.output("datauri");
console.log(currentReportUrl,"currentReportUrl")
this.currentReportUrl = this._sanitizer.bypassSecurityTrustResourceUrl( window.location.origin + currentReportUrl
);
}