我正在使用Angular 2和web api。我正在使用以下函数进行API调用
getList(){
let headers = new Headers();
headers.append('Content-Type', 'application/json');
return this._http
.post('http://krtyavm1.cloudapp.net:8085/api/event/posteventtest',null, { headers: headers })
.map(res => res.json());
}
但它给了我" 405方法不允许 - http://krtyavm1.cloudapp.net:8085/api/event/posteventtest"错误,我没有得到确切的问题,plzz帮助我。