«angular-httpclient» etiketlenmiş sorular


8
Açısal HttpClient'e bir HTTP üstbilgisi eklemek üstbilgiyi göndermiyor, neden?
İşte benim kod: import { HttpClient, HttpErrorResponse, HttpHeaders } from '@angular/common/http'; logIn(username: string, password: string) { const url = 'http://server.com/index.php'; const body = JSON.stringify({username: username, password: password}); const headers = new HttpHeaders(); headers.set('Content-Type', 'application/json; charset=utf-8'); this.http.post(url, body, {headers: headers}).subscribe( (data) => { console.log(data); }, (err: HttpErrorResponse) => { if (err.error …

8
Açısal 4 HttpClient Sorgu Parametreleri
Ben yeni bir API çağrısı içine sorgu parametreleri aktarmak için bir yol arıyoruz edilmiştir HttpClientModule'ın HttpClientve bir çözüm bulmak için henüz. Eski Httpmodül ile böyle bir şey yazarsınız. getNamespaceLogs(logNamespace) { // Setup log namespace query parameter let params = new URLSearchParams(); params.set('logNamespace', logNamespace); this._Http.get(`${API_URL}/api/v1/data/logs`, { search: params }) } Bu, …

11
Angular HttpClient'te hataları yakalama
Şuna benzeyen bir veri hizmetim var: @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) .map((res) => { return res as Object }) .toPromise(); } post(url, body): Promise<Object> { return this.sendRequest(this.baseUrl + url, 'post', …

6
Açısal HttpClient "Ayrıştırma sırasında Http hatası"
Angular 4'ten Laravel arka ucuma bir POST isteği göndermeye çalışıyorum. LoginService'im şu yönteme sahiptir: login(email: string, password: string) { return this.http.post(`http://10.0.1.19/login`, { email, password }) } LoginComponent'imde bu yönteme abone oluyorum: .subscribe( (response: any) => { console.log(response) location.reload() }, (error: any) => { console.log(error) }) Ve bu benim Laravel arka …
Sitemizi kullandığınızda şunları okuyup anladığınızı kabul etmiş olursunuz: Çerez Politikası ve Gizlilik Politikası.
Licensed under cc by-sa 3.0 with attribution required.