我从我的API请求响应,并且我有很多。
所以我必须像这样设置HttpClient的标头:
this.httpClient.get("my_url", {
headers: new HttpHeaders({ // this section i have to set
'Content-Type': 'application/json',
'Authorization': 'JWT ' + token_key
})
}).subscribe(result => {
....
....
});
我不想在每个请求中都设置标头。如何永久设置?