我有一个使用Entity Framework的c#WEB API - 我试图通过我的角度前端发出一个put请求来模拟'checkin'函数,但请求没有通过。
这是我的Web api方法
[HttpPut("checkin/{id}")]
[AuthorizeRoles(Role.Administrator, Role.User)]
public async Task<IActionResult> CheckIn(int id)
{
var reservation = await context.Reservations.FindAsync(id);
var username = User.Identity.Name;
if (reservation == null)
return NotFound();
// Ensure user is checking-in their own reservation and its not already checked-in
if (reservation.UserName == username && reservation.CheckInDate == null)
{
reservation.CheckInDate = DateTime.Now;
var count = await context.SaveChangesAsync();
if (count < 1)
return StatusCode((int)HttpStatusCode.InternalServerError);
}
return Ok();
}
这是我发起请求的两个.ts文件 -note:在第二种方法中,我决定手动传递ID以进行测试
-checkIn(id: number){
if (confirm('Would you like to check in')) {
this.reservationService.checki(7);
};
}
reservationservice.ts
checki(id: number) {
const headers = new Headers();
const url = `${this.url}+/checkin/${7}`;
return this.http
.put(url, JSON.stringify(7), {headers: headers})
.map(res => res.json());
}
答案 0 :(得分:1)
使用Angular HTTP客户端,所有Http请求都是Observables,这意味着您需要订阅它们才能调用它们。
因此,在您的签入功能中,您需要执行以下操作:
-checkIn(id: number){
if (confirm('Would you like to check in')) {
this.reservationService.checki(7).subscribe(res => {});
};
}
无需明确处理响应。
对于处理看跌期权的后端我会看到这个答案,我不是任何一个c#专家。 https://stackoverflow.com/a/32835329/8350917