我想写一个只适用于某些文件类型的包罗万象的路线。现在我有
routes.MapRoute("Template", "{*path}", new {controller = "Template", action = "Default"});
在我的其他路线的底部。这适用于捕获所有内容。但是,我还有其他一些我想忽略的遗留文件扩展名,所以暂时我需要这条最终路线来仅触发 .html 文件。
有我可以申请的路线限制吗?
我想写一个只适用于某些文件类型的包罗万象的路线。现在我有
routes.MapRoute("Template", "{*path}", new {controller = "Template", action = "Default"});
在我的其他路线的底部。这适用于捕获所有内容。但是,我还有其他一些我想忽略的遗留文件扩展名,所以暂时我需要这条最终路线来仅触发 .html 文件。
有我可以申请的路线限制吗?
我想通了。享受。
using System;
using System.Linq;
using System.Web;
using System.Web.Routing;
namespace Project.App_Start
{
public class FileTypeConstraint : IRouteConstraint
{
private readonly string[] MatchingFileTypes;
public FileTypeConstraint(string matchingFileType)
{
MatchingFileTypes = new[] {matchingFileType};
}
public FileTypeConstraint(string[] matchingFileTypes)
{
MatchingFileTypes = matchingFileTypes;
}
public bool Match(HttpContextBase httpContext, Route route, string parameterName, RouteValueDictionary values, RouteDirection routeDirection)
{
string path = values["path"].ToString();
return MatchingFileTypes.Any(x => path.ToLower().EndsWith(x, StringComparison.CurrentCultureIgnoreCase));
}
}
}
用法:
routes.MapRoute(
"Template",
"{*path}",
new {controller = "Template", action = "Default"},
new { path = new FileTypeConstraint(new[] {"html", "htm"}) });