【发布时间】:2017-12-03 02:09:41
【问题描述】:
此应用程序用于从数据库收集信息并从中制作 .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;
我仅在 Microsoft Edge 控制台中收到错误消息。很多人说这是 Edge 浏览器的安全问题。
谁能为此提供帮助?
【问题讨论】: