此应用程序用于从数据库收集信息并从中生成.pdf文件.
this.reportsService.getTelerikReport({ reportId: this.selectReportId, startDate: this.startDate, endDate: this.endDate, ReportItems: listCheckItems})
.then(response => {
this.fileLoading = false;
var file = new Blob([response], { type: "application/pdf" });
this.fileUrl = this.$sce.trustAsResourceUrl(URL.createObjectURL(file));
this.isReportGenerated = true;
Run Code Online (Sandbox Code Playgroud)
我只在Microsoft Edge控制台中收到错误.很多人说这是Edge浏览器的安全问题.
有人能为我提供帮助吗?