FromUri进班

时间:2018-10-30 02:14:23

标签: c# asp.net .net

我正在使用此代码

[Route("{id}/users/{name}"]
[HttpGet]
public string GetUserInfo([FromUri]int id, string name)
{
    return this.GetInfo(new User {Id = id, Name = name});
}

我可以在Route中的c#中使用([FromUri]Someclass class)吗?

[Route("{id}/users/{name}"]
[HttpGet]
public string GetUserInfo([FromUri]User user)
...

问题是“我如何在塔尔路线上使用[FromUri](或其他东西)Someclass

1 个答案:

答案 0 :(得分:0)

您还可以使用[FromBody]属性来绑定请求正文中的参数类。

[Route("{id}/users/{name}"]
[HttpGet]
public string GetUserInfo([FromBody]User user)
...

您可以了解有关此here的更多信息。