gpt4 book ai didi

c# - 使用 AttributeRouting 在 WebAPI 中指定默认 Controller /操作路由

转载 作者:太空狗 更新时间:2023-10-29 18:29:23 27 4
gpt4 key购买 nike

当使用 AttributeRouting 而不是 WebAPI 使用的默认 RouteConfiguration 时,如何设置要使用的默认 Controller 。即摆脱注释代码部分,因为在使用 AttribteRouting 时这是多余的

    public class RouteConfig
{
public static void RegisterRoutes(RouteCollection routes)
{
routes.IgnoreRoute("{resource}.axd/{*pathInfo}");
//routes.MapRoute(
// name: "Default",
// url: "{controller}/{action}/{id}",
// defaults: new { controller = "Home", action = "Index", id = UrlParameter.Optional }
//);

}
}

如果我评论上面的部分并尝试运行 webapi 应用程序,我会收到以下错误,因为没有定义默认的 Home Controller /操作。HTTP 错误 403.14 - 禁止访问Web 服务器配置为不列出此目录的内容。

如何通过 Home Controller /操作的属性路由指定路由?

编辑:代码示例:

 public class HomeController : Controller
{
[GET("")]
public ActionResult Index()
{
return View();
}

public ActionResult Help()
{
var explorer = GlobalConfiguration.Configuration.Services.GetApiExplorer();
return View(new ApiModel(explorer));
}
}

最佳答案

您是否尝试过以下方法:

//[RoutePrefix("")]
public class HomeController : Controller
{
[GET("")]
public ActionResult Index()
{
return View();
}
}

这将在集合中添加一个路由,其 url 模板为“”, Controller 和操作的默认值分别为“Home”和“Index”。

关于c# - 使用 AttributeRouting 在 WebAPI 中指定默认 Controller /操作路由,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16265653/

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