我正在尝试将来自 localhost:4200 上的 Angular4 的数据发布到 localhost:8000 上的 API。我在 Postman 上工作得很好,但在 Angular 上却不行。然后我得到:
加载资源失败:服务器响应状态为 422(无法处理的实体)
这是发布到 api 的服务:
@Injectable()
export class ApiService {
constructor(private http: Http) { }
login(username: string, password: string): Observable<Response>{
const url = 'http://localhost:8000/login';
const json = JSON.stringify({username: username, password: password});
const headers: Headers = new Headers();
headers.append('Content-Type', 'application/json; charset=UTF-8');
return this.http.post(url, json, headers )
.map(res => res.json());
}
}
这是运行该方法的代码
logIn(user: string, password: string){
this.apiService.login(user, password).subscribe(
data => console.log(data),
error => console.log(error)
);
}