«angular-httpclient» 태그된 질문


8
Angular HttpClient에 HTTP 헤더를 추가해도 헤더가 전송되지 않습니다. 왜 그렇습니까?
내 코드는 다음과 같습니다. 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 …

8
각도 4 HttpClient 쿼리 매개 변수
나는 새와 API 호출에 쿼리 매개 변수를 전달할 수있는 방법을 찾고있다 HttpClientModule의 HttpClient및 해결책을 찾기 위해 아직있다. 이전 Http모듈을 사용하면 다음과 같이 작성할 수 있습니다. 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 }) } 그러면 다음 URL에 대한 …

11
Angular HttpClient에서 오류 잡기
다음과 같은 데이터 서비스가 있습니다. @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', body) …

6
Angular HttpClient "파싱 중 Http 실패"
Angular 4에서 Laravel 백엔드로 POST 요청을 보내려고합니다. My LoginService에는 다음 방법이 있습니다. login(email: string, password: string) { return this.http.post(`http://10.0.1.19/login`, { email, password }) } 내 LoginComponent에서이 메서드를 구독합니다. .subscribe( (response: any) => { console.log(response) location.reload() }, (error: any) => { console.log(error) }) 그리고 이것은 내 Laravel 백엔드 방법입니다. ... if($this->auth->attempt(['email' …
당사 사이트를 사용함과 동시에 당사의 쿠키 정책개인정보 보호정책을 읽고 이해하였음을 인정하는 것으로 간주합니다.
Licensed under cc by-sa 3.0 with attribution required.