Pytania oznaczone «angular-httpclient»

114
Przechwytywanie błędów w Angular HttpClient

Mam usługę transmisji danych, która wygląda następująco: @Injectable() export class DataService { baseUrl = 'http://localhost' constructor( private httpClient: HttpClient) { } get(url, params): Promise<Object> { return this.sendRequest(this.baseUrl + url, 'get', null, params)...