gpt4 book ai didi

c# - 匹配相对于路径的路由

转载 作者:行者123 更新时间:2023-11-30 21:35:28 24 4
gpt4 key购买 nike

我希望任何以 /templates/{filename} 结尾的 URL 映射到使用路由属性的特定 Controller ,例如:

public class TemplateController : Controller
{
[Route("templates/{templateFilename}")]
public ActionResult Index(string templateFilename)
{
....
}

}

这有效,但是引用这条路线的链接是相对的

  • http://localhost/templates/t1 -- 有效
  • http://localhost/foo/bar/templates/t2 -- 中断 (404)

我需要这样的东西:

[Route("*/templates/{templateFilename}")]

最佳答案

你不能用属性路由完成这样的事情。只能通过实现 IRouteConstraint 或子类化 RouteBase 来进行高级路由匹配。

在这种情况下,子类化 RouteBase 更简单。这是一个例子:

public class EndsWithRoute : RouteBase
{
private readonly Regex urlPattern;
private readonly string controllerName;
private readonly string actionName;
private readonly string prefixName;
private readonly string parameterName;

public EndsWithRoute(string controllerName, string actionName, string prefixName, string parameterName)
{
if (string.IsNullOrWhiteSpace(controllerName))
throw new ArgumentException($"'{nameof(controllerName)}' is required.");
if (string.IsNullOrWhiteSpace(actionName))
throw new ArgumentException($"'{nameof(actionName)}' is required.");
if (string.IsNullOrWhiteSpace(prefixName))
throw new ArgumentException($"'{nameof(prefixName)}' is required.");
if (string.IsNullOrWhiteSpace(parameterName))
throw new ArgumentException($"'{nameof(parameterName)}' is required.");

this.controllerName = controllerName;
this.actionName = actionName;
this.prefixName = prefixName;
this.parameterName = parameterName;
this.urlPattern = new Regex($"{prefixName}/[^/]+/?$", RegexOptions.Compiled | RegexOptions.IgnoreCase);
}

public override RouteData GetRouteData(HttpContextBase httpContext)
{
var path = httpContext.Request.Path;

// Check if the URL pattern matches
if (!urlPattern.IsMatch(path, 1))
return null;

// Get the value of the last segment
var param = path.Split('/').Last();

var routeData = new RouteData(this, new MvcRouteHandler());

//Invoke MVC controller/action
routeData.Values["controller"] = controllerName;
routeData.Values["action"] = actionName;
// Putting the myParam value into route values makes it
// available to the model binder and to action method parameters.
routeData.Values[parameterName] = param;

return routeData;
}

public override VirtualPathData GetVirtualPath(RequestContext requestContext, RouteValueDictionary values)
{
object controllerObj;
object actionObj;
object parameterObj;

values.TryGetValue("controller", out controllerObj);
values.TryGetValue("action", out actionObj);
values.TryGetValue(parameterName, out parameterObj);

if (controllerName.Equals(controllerObj.ToString(), StringComparison.OrdinalIgnoreCase)
&& actionName.Equals(actionObj.ToString(), StringComparison.OrdinalIgnoreCase)
&& !string.IsNullOrEmpty(parameterObj.ToString()))
{
return new VirtualPathData(this, $"{prefixName}/{parameterObj.ToString()}".ToLowerInvariant());
}
return null;
}
}

用法

public class RouteConfig
{
public static void RegisterRoutes(RouteCollection routes)
{
routes.IgnoreRoute("{resource}.axd/{*pathInfo}");

routes.Add(new EndsWithRoute(
controllerName: "Template",
actionName: "Index",
prefixName: "templates",
parameterName: "templateFilename"));

routes.MapRoute(
name: "Default",
url: "{controller}/{action}/{id}",
defaults: new { controller = "Home", action = "Index", id = UrlParameter.Optional }
);
}
}

这将匹配这些 URL:

http://localhost/templates/t1
http://localhost/foo/bar/templates/t2

并将它们都发送到 TemplateController.Index() 方法,最后一段作为 templateFilename 参数。

NOTE: For SEO purposes, it is generally not considered a good practice to put the same content on multiple URLs. If you do this, it is recommended to use a canonical tag to inform the search engines which of the URLs is the authoritative one.

See this to accomplish the same in ASP.NET Core .

关于c# - 匹配相对于路径的路由,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49174973/

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