gpt4 book ai didi

asp.net-web-api - 基于参数类型的重载web api Action 方法

转载 作者:行者123 更新时间:2023-12-03 08:58:01 26 4
gpt4 key购买 nike

有没有办法对 Action 方法执行基于参数类型的重载?
即是否可以在 Controller 中执行以下操作

public class MyController : ApiController
{
public Foo Get(int id) { //whatever }

public Foo Get(string id) { //whatever }

public Foo Get(Guid id) { //whatever }
}

如果是这样,需要对路由表进行哪些更改。

最佳答案

标准路由方法不能很好地支持这种场景。

您可能想使用 attribute based routing相反,这为您提供了更大的灵活性。

具体看一下你可以按类型路由的路由约束:

// Type constraints
[GET("Int/{x:int}")]
[GET("Guid/{x:guid}")]

其他任何事情都会变成一个黑客......例如

如果您确实使用标准路由尝试过,则可能需要通过其名称路由到正确的操作,然后使用 reg ex 的约束(例如 guid )路由到所需的默认操作。

Controller :
public class MyController : ApiController
{
[ActionName("GetById")]
public Foo Get(int id) { //whatever }

[ActionName("GetByString")]
public Foo Get(string id) { //whatever }

[ActionName("GetByGUID")]
public Foo Get(Guid id) { //whatever }
}

路线:
        //Should match /api/My/1
config.Routes.MapHttpRoute(
name: "DefaultDigitApi",
routeTemplate: "api/{controller}/{id}",
defaults: new { action = "GetById" },
constraints: new { id = @"^\d+$" } // id must be digits
);

//Should match /api/My/3ead6bea-4a0a-42ae-a009-853e2243cfa3
config.Routes.MapHttpRoute(
name: "DefaultGuidApi",
routeTemplate: "api/{controller}/{id}",
defaults: new { action = "GetByGUID" },
constraints: new { id = @"^(\{{0,1}([0-9a-fA-F]){8}-([0-9a-fA-F]){4}-([0-9a-fA-F]){4}-([0-9a-fA-F]){4}-([0-9a-fA-F]){12}\}{0,1})$" } // id must be guid
);

//Should match /api/My/everything else
config.Routes.MapHttpRoute(
name: "DefaultStringApi",
routeTemplate: "api/{controller}/{id}",
defaults: new { action = "GetByString" }
);

更新

如果执行 FromBody(也许使用带有模型的 FromUri),我通常会使用 POST,但可以通过添加以下内容来满足您的要求。

对于 Controller
    [ActionName("GetAll")]
public string Get([FromBody]MyFooSearch model)
{
if (model != null)
{
//search criteria at api/my
}
//default for api/my
}

//should match /api/my
config.Routes.MapHttpRoute(
name: "DefaultCollection",
routeTemplate: "api/{controller}",
defaults: new { action = "GetAll" }
);

关于asp.net-web-api - 基于参数类型的重载web api Action 方法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14353466/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com