我知道已经问过这个问题,但是我找不到任何合适的解决方案。
我正在尝试发出post
请求。该API需要一种x-www-form-urlencoded
主体格式,因此我最终这样做:
login(account: LogAccount): Observable<any> {
const body = new HttpParams()
.set('username', account.username)
.set('password', account.password);
const headers = new HttpHeaders({ 'Content-Type': 'application/x-www-form-urlencoded' });
return this.http.post(`${environment.api.apiUrl}/loginservice`, body.toString(),
{ headers });
}
哪个导致:
使用Postman,一切正常。 我在这里想念什么? 谢谢