Angular2 Http post request not binding to ASP.NET 5 controller's action

后端 未结 3 1138
醉梦人生
醉梦人生 2020-12-21 08:31

I am initiating a post request from Angular2 to a ASP.NET 5 controller action. Angular is posting the data correctly and hitting the controller action but it is not being ma

3条回答
  •  南方客
    南方客 (楼主)
    2020-12-21 08:56

    For me it works:

    let headers = new Headers({ 'Content-Type': 'application/json' });
    this.http.post(this.url, JSON.stringify({ firstName: 'Ali' }), { headers: headers })
    

提交回复
热议问题