所以我正在建立一个角度4应用程序,我使用带有实体框架的Web API来存储我的数据。
我使用了一个实现Post方法的角度服务,这是我在myservice.ts中的Post方法
PostShopProds(pers:ShopProds){
let body = JSON.stringify(pers);
let headers = new Headers({ 'Content-Type': 'application/json' });
let options = new RequestOptions({ method:RequestMethod.Post,headers: headers });
headers.append('Cache-Control','no-cache');
return this._http.post("http://localhost:3980/api/shopcarts", body, options).map(res=>res.json());
}

这就是我如何在angular中调用方法帖子:
let element =new ShopProds(id,this.general.login,nombre);
this.shoprodS.PostShopProds(element).subscribe(x=>this.Shopcarts=x);

这些是我构建应用时出现的错误: