【发布时间】:2021-12-13 10:50:08
【问题描述】:
我有返回 PDF 文件的 API,但在 Angular 中,当我调用它时会出现此错误
Http failure during parsing for http://localhost:1234/hebaback/public/api/download-report-20
error: SyntaxError: Unexpected token % in JSON at position 0 at JSON.parse (<anonymous>) at XMLHtt…, text: '%PDF-1.3\n%�߬�\n3 0 obj\n<</Type /Page\n/Parent 1 0 R\n…1728F9DC34CF5EC66FE> ]\n>>\nstartxref\n2887591\n%%EOF'
功能简单
downloadReport(id: any): Observable<any> {
return this._HttpClient.get(`http://localhost:1234/hebaback/public/api/download-report-${id}`)
}
我确定错误来自 Angular,因为我在 postman 中尝试过 API 并且效果很好
【问题讨论】:
标签: angular