我有以下行动:
[HttpPost]
public IHttpActionResult GetByUsername(string username)
{
return Ok(_userBusinessComponent.GetUserByUsername(username));
}
如何通过username
将Postman
发送到此操作
我尝试了以下,没有回应:
我将动作签名更改为:
public IHttpActionResult GetByUsername([FromBody]string username)
此时用户名始终为空!!!
答案 0 :(得分:0)
正如ibubi
所述,对于以下网络API动作
[HttpPost]
public IHttpActionResult GetByUsername(string username)
{
return Ok(_userBusinessComponent.GetUserByUsername(username));
}
我必须使用以下代码:
http://localhost:51671/api/User/GetByUsername?username=Mohammad