params: obj ? obj : null,
headers: header,
responseType: 'blob'
})
А в терминале выходит ошибка
Types of property 'responseType' are incompatible.
Type '"blob"' is not assignable to type '"json"'.
this._httpClient.get<Blob>
а лучше всего так public getImage(hero: Hero): Observable<Blob> { return this.httpClient .get(`${this.URL}/image/${hero._id}`, { responseType: "blob" }); }
Обсуждают сегодня