gpt4 book ai didi

node.js - 解析器中的 Angular HttpClient 问题

转载 作者:太空宇宙 更新时间:2023-11-04 00:16:11 26 4
gpt4 key购买 nike

在自定义解析器中使用启用了 AOT 编译的 Angular 2(Angular 通用),我收到错误..

Uncaught (in promise): Error Error: Uncaught (in promise): Error

问题似乎与我返回 HttpClient 调用的结果(这只是一个简单的数字)有关。

如果我关闭服务器端渲染,这一切都会正常工作。以下是代码摘录。

constructor(private httpClient : HttpClient)
{

}

resolve(route: ActivatedRouteSnapshot, state: RouterStateSnapshot): number | Observable<number> | Promise<number> {

try{
return this.httpClient.get<number>(`/api/something/getnumber`);
}catch(e){
console.log(e);
}
return -1;
}

这是服务器端渲染的一个基本问题吗?还是我只是缺少启用服务器端渲染所需的一些关键配置?

最佳答案

这与您获得非 json 数据的结果有关。将 {responseType: 'text'} 添加到您的调用中以指定这一点。

return this.httpClient.get<number>(`/api/something/getnumber`, {responseType: 'text'});

另请参阅文档 Requesting non-JSON data

Not all APIs return JSON data. Suppose you want to read a text file on the server. You have to tell HttpClient that you expect a textual response:

关于node.js - 解析器中的 Angular HttpClient 问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46911592/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com