我正在尝试下载从后端服务器发送的文件。 get方法在邮递员上很好用,但是我不能在我的前端应用程序(角度5)上使它起作用。
这是我的后端:
@GET
@Consumes({MediaType.APPLICATION_XML, MediaType.APPLICATION_JSON})
@Path("/recupererDocument/{id}")
@ResponseStatus(value = {Response.Status.OK, Response.Status.BAD_REQUEST,
Response.Status.INTERNAL_SERVER_ERROR,})
@ElementClass(request = Long.class, response = Response.class)
public Response recupererDocument(
@NotNull(message = "L'id (identifiant du document) est obligatoire") @PathParam("id") final String id);
public Response recupererDocument(String id) {
File file = null;
final WebTarget target = ...;
Builder builderDoc = target.request(typeMime);
final Response reponseDocument = builderDoc.accept(typeMime).get();
LOGGER.debug(reponseDocument.getStatus());
if (reponseDocument.getStatus() == 200) {
file = reponseDocument.readEntity(new GenericType<File>() {
});
}
reponseDocument.close();
return Response.ok(file, MediaType.APPLICATION_OCTET_STREAM).build();
}
还有我的前端
telechargerPieceJointe(id: string): void {
this.s
.telechargerPieceJointe(id)
.then(pj => {
this.downloadFile(pj);
})
.catch(e => {
if (isDevMode()) {
console.log('Erreur : ' + e);
}
});
}
downloadFile(data: Response) {
const blob = new Blob([data], {type: 'application/octet-stream'});
const url = window.URL.createObjectURL(blob);
window.open(url);
}
telechargerPieceJointe(id: string): Promise<any> {
const url = environment.rest.local.recupererDocument + '/' + id;
const headers = new HttpHeaders({
Accept: 'application/pdf',
responseType: 'blob'
});
return this.httpClient.get(url, {headers}).toPromise();
}
现在在调试的前端,我没有输入“ .then”方法,而是.catch。
我收到以下消息:
JSON位置0处的意外令牌%。
但是在chrome开发工具的“网络”标签中,请求很好(200),我可以在“响应”部分看到我的对象。我不明白为什么它不起作用:/。
如果有人看到我在做错事情,那可能会节省我的理智。
答案 0 :(得分:1)
Angular尝试将您的http响应正文解析为JSON(这是默认响应类型)。
responseType
不是在HttpHeaders
中指定的,而是在httpOptions对象中指定的。将所需的responseType
放入传递给get
的httpOptions中。
telechargerPieceJointe(id: string): Promise<any> {
const url = environment.rest.local.recupererDocument + '/' + id;
const headers = new HttpHeaders({
Accept: 'application/pdf'
});
return this.httpClient.get(url, { headers, responseType: 'blob' }).toPromise();
}