ASP.NET Core:[FromQuery]用法和URL格式

时间:2018-04-09 20:34:02

标签: c# asp.net-core asp.net-core-webapi

我正在尝试在我的网络API中使用[FromQuery],我不知道如何使用它。

这是控制器中的GetAllBooks()方法:

 [HttpGet]
 [Route("api/v1/ShelfID/{shelfID}/BookCollection")]
 public async Task<IActionResult> GetAllBooks(string shelfID, [FromQuery] Book bookinfo)
            {
               //do something
            }

这是Book模型类:

 public class Book
    {
        public string ID{ get; set; }
        public string Name{ get; set; }
        public string Author { get; set; }
        public string PublishDate { get; set; }
    }

我很担心这是否是使用[FromQuery]的正确方法。我认为网址是

  

https://localhost:xxxxx/api/v1/ShelfID/{shelfID}/BookCollection/IActionResult?ID="123"&Name="HarryPotter"

但是断点并没有达到我的控制器方法,所以我想也许URL不正确。有什么建议?谢谢!

1 个答案:

答案 0 :(得分:9)

当您通过类似属性明确定义路由时,将完全忽略方法的名称和返回类型。 IActionResult不应该在那里。

正确的网址为:https://localhost:xxxxx/api/v1/ShelfID/{shelfID}/BookCollection?ID="123"&Name="HarryPotter"

此外,查询字符串绑定仅对原始类型(字符串,整数等)开箱即用。要将类绑定到查询字符串,您需要一个非常复杂的自定义模型绑定器。

最好只显式声明要传入的属性:

public async Task<IActionResult> GetAllBooks(string shelfID, [FromQuery] string ID, [FromQuery] string Name)