คำถามติดแท็ก angular-httpclient


8
การเพิ่มส่วนหัว HTTP ไปยัง Angular HttpClient ไม่ส่งส่วนหัวทำไม?
นี่คือรหัสของฉัน: 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 instanceof Error) …

8
พารามิเตอร์แบบสอบถาม HttpClient เชิงมุม 4
ฉันได้รับการมองหาวิธีที่จะผ่านพารามิเตอร์การค้นหาเป็นเรียก API กับใหม่HttpClientModule's 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 }) } ซึ่งจะส่งผลให้มีการเรียก API ไปยัง URL ต่อไปนี้: localhost:3001/api/v1/data/logs?logNamespace=somelogsnamespace อย่างไรก็ตามHttpClient get()วิธีการใหม่ไม่มีsearchคุณสมบัติดังนั้นฉันสงสัยว่าจะส่งผ่านพารามิเตอร์การสืบค้นได้อย่างไร

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) .map((res) => { return …

6
Angular HttpClient“ HTTP ล้มเหลวระหว่างการแยกวิเคราะห์”
ฉันพยายามส่งคำขอ POST จาก Angular 4 ไปยังแบ็กเอนด์ Laravel ของฉัน 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' => $email, 'password' => $password], …
โดยการใช้ไซต์ของเรา หมายความว่าคุณได้อ่านและทำความเข้าใจนโยบายคุกกี้และนโยบายความเป็นส่วนตัวของเราแล้ว
Licensed under cc by-sa 3.0 with attribution required.