我正在尝试从控制器返回ts类的状态,该状态是在数据库中找到数据还是找不到数据。我收到的响应是空字符串
这可以与响应类型相关吗? ts
onChangeArchiveStatus(data) {
var message;
console.log(data.item.Id);
this.agentsService.inuseAgent(data.item.Id)
.then(response => {
console.log(response);
}
});
}
控制器
[HttpGet]
[ApplicationApiAuthorize("Administrator, ContentManager")]
public IHttpActionResult InUseAgent([FromBody]long id)
{
var agentInUse = AgentsDataService.InUseAgent(id);
if (agentInUse == true)
{
return Ok();
}else
{
return NotFound();
}
}