如何将html转换为pdf并在iframe中查看而不使用angular2下载

时间:2019-05-22 12:45:02

标签: javascript html angular pdf-generation

我有一个HTML模板,现在当我单击PDF按钮时,该模板必须显示在iframeembed内,并且必须处于iframeembed,如果用户需要,他可以单击下载图标以下载文件。 我希望我的演示以这种方式工作,我不知道该如何解决,请问有人可以帮助我解决这个问题。

演示: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
  );
  }

0 个答案:

没有答案