- c - 在位数组中找到第一个零
- linux - Unix 显示有关匹配两种模式之一的文件的信息
- 正则表达式替换多个文件
- linux - 隐藏来自 xtrace 的命令
我正在尝试为我的 ASP.NET MVC 5 项目设置一些路由。
现在我有一些奇怪的行为:
/Home/About
路由正确/Home/Index
被路由到 /XmlRpc?action=Index&controller=Blog
/HOme/Index
有效(是的,我发现是由于打字错误)——我一直认为路由是大小写不敏感?Url.Action("Foo","Bar")
还会创建 /XmlRpc?action=Foo&controller=Bar
这是我的RouteConfig
文件:
public static void RegisterRoutes(RouteCollection routes)
{
routes.IgnoreRoute("{resource}.axd/{*pathInfo}");
routes.Add("XmlRpc", new Route("XmlRpc", new MetaWeblogRouteHandler()));
routes.MapRoute("Post", "Post/{year}/{month}/{day}/{id}", new {controller = "Blog", action = "Post"}, new {year = @"\d{4,4}", month = @"\d{1,2}", day = @"\d{1,2}", id = @"(\w+-?)*"});
routes.MapRoute("Posts on Day", "Post/{year}/{month}/{day}", new {controller = "Blog", action = "PostsOnDay"}, new {year = @"\d{4,4}", month = @"\d{1,2}", day = @"\d{1,2}"});
routes.MapRoute("Posts in Month", "Post/{year}/{month}", new {controller = "Blog", action = "PostsInMonth"}, new {year = @"\d{4,4}", month = @"\d{1,2"});
routes.MapRoute("Posts in Year", "Post/{year}", new {controller = "Blog", action = "PostsInYear"}, new {year = @"\d{4,4}"});
routes.MapRoute("Post List Pages", "Page/{page}", new {controller = "Blog", action = "Index"}, new {page = @"\d{1,6}"});
routes.MapRoute("Posts by Tag", "Tag/{tag}", new {controller = "Blog", action = "PostsByTag"}, new {id = @"(\w+-?)*"});
routes.MapRoute("Posts by Category", "Category/{category}", new {controller = "Blog", action = "PostsByCategory"}, new {id = @"(\w+-?)*"});
routes.MapRoute("Default", "{controller}/{action}/{id}", new {controller = "Blog", action = "Index", id = UrlParameter.Optional});
}
这就是 MetaWeblogRouteHandler
的定义:
public class MetaWeblogRouteHandler : IRouteHandler
{
public IHttpHandler GetHttpHandler(RequestContext requestContext)
{
return new MetaWeblog();
}
}
基本上,我希望拥有通常的 ASP.NET MVC 路由行为 (/controller/action) + 我为永久链接定义的自定义路由 + 仅在/XmlRpc 处通过 XmlRpc 处理程序处理 XML-RPC。
由于参数与 Default
路由中定义的参数相同,我尝试删除该路由,但没有成功。
有什么想法吗?
更新:
当调用 /Home/Index
时,AppRelativeCurrentExecutionFilePath
被设置为 "~/XmlRpc"
所以 XmlRpc 路由是合法的选择。请求似乎有问题?
更新 2:除了一种情况外,问题都已自行解决:当通过 Visual Studio 启动 IE 进行调试时,它仍然失败。在所有其他情况下,它现在都可以工作(是的,我检查了浏览器缓存,甚至在另一台机器上尝试过以确保确定;IE 从 VS = 失败开始,所有其他组合都很好)。不管怎样,因为它现在可以为最终用户工作,所以我现在很满意 ;)
最佳答案
当你执行 Url.Action("Foo","Bar")
,MVC 将从您的输入创建一组路由值(在这种情况下,action=Foo,controller=Bar),然后它会查看您的路由,尝试根据其段和默认值匹配匹配的路由。
您的 XmlRpc 路由没有段,也没有默认值,并且是第一个定义的。这意味着在使用 @Url.Action
生成 url 时它将始终是第一个匹配项, @Html.ActionLink
等
在生成 url 时防止路由匹配的一种快速方法是添加默认 Controller 参数(使用您确定永远不会使用的 Controller 名称)。例如:
routes.Add("XmlRpc", new Route("XmlRpc", new RouteValueDictionary() { { "controller", "XmlRpc" } }, new MetaWeblogRouteHandler()));
现在当你执行 Url.Action("Foo","Bar")
, 你会得到预期的 /Bar/Foo
url,因为“Bar”与路由定义中的默认 Controller 值“XmlRpc”不匹配。
然而,这似乎有点 hacky。
更好的选择是创建您自己的 RouteBase
类(class)。这只会关心 url /XmlRpc
,然后将使用 MetaWeblogRouteHandler
提供服务并且在使用 Html 和 Url 助手生成链接时将被忽略:
public class XmlRpcRoute : RouteBase
{
public override RouteData GetRouteData(HttpContextBase httpContext)
{
//The route will only be a match when requesting the url ~/XmlRpc, and in that case the MetaWeblogRouteHandler will handle the request
if (httpContext.Request.AppRelativeCurrentExecutionFilePath.Equals("~/XmlRpc", StringComparison.CurrentCultureIgnoreCase))
return new RouteData(this, new MetaWeblogRouteHandler());
//If url is other than /XmlRpc, return null so MVC keeps looking at the other routes
return null;
}
public override VirtualPathData GetVirtualPath(RequestContext requestContext, RouteValueDictionary values)
{
//return null, so this route is skipped by MVC when generating outgoing Urls (as in @Url.Action and @Html.ActionLink)
return null;
}
}
public static void RegisterRoutes(RouteCollection routes)
{
routes.IgnoreRoute("{resource}.axd/{*pathInfo}");
//Add the route using our custom XmlRpcRoute class
routes.Add("XmlRpc", new XmlRpcRoute());
... your other routes ...
}
但是,最终您创建的路线只是为了运行 IHttpHandler
在 MVC 流之外,对于单个 url。您甚至在努力防止该路由干扰其余 MVC 组件,例如在使用帮助器生成 url 时。
然后您可以直接在 web.config 文件中为该模块添加一个处理程序,同时为 /XmlRpc
添加一个忽略规则在你的 MVC 路由中:
<configuration>
...
<system.webServer>
<handlers>
<!-- Make sure to update the namespace "WebApplication1.Blog" to whatever your namespace is-->
<add name="MetaWebLogHandler" verb="POST,GET" type="WebApplication1.Blog.MetaWeblogHandler" path="/XmlRpc" />
</handlers>
</system.webServer>
</configuration>
public static void RegisterRoutes(RouteCollection routes)
{
routes.IgnoreRoute("{resource}.axd/{*pathInfo}");
//Make sure MVC ignores /XmlRpc, which will be directly handled by MetaWeblogHandler
routes.IgnoreRoute("XmlRpc");
... your other routes ...
}
使用这 3 种方法中的任何一种,这就是我得到的:
/Home/Index
呈现 HomeController
的索引 View
/
呈现 BlogController
的索引 View
@Url.Action("Foo","Bar")
生成 url /Bar/Foo
@Html.ActionLink("MyLink","Foo","Bar")
呈现以下 html:<a href="/Bar/Foo">MyLink</a>
/XmlRcp
呈现描述 MetaWeblogHandler 及其可用方法的 View ,其中只有一个方法可用(blog.index,不带参数并返回字符串)
为了对此进行测试,我创建了一个新的空 MVC 5 应用程序,添加了 NuGet 包 xmlrpcnet-server。
我创建了一个 HomeController
和一个 BlogController
,都带有索引操作,并且我创建了以下 MetaWeblog 类:
public interface IMetaWeblog
{
[XmlRpcMethod("blog.index")]
string Index();
}
public class MetaWeblogHandler : XmlRpcService, IMetaWeblog
{
string IMetaWeblog.Index()
{
return "Hello World";
}
}
public class MetaWeblogRouteHandler : IRouteHandler
{
public IHttpHandler GetHttpHandler(RequestContext requestContext)
{
return new MetaWeblogHandler();
}
}
关于c# - 路由被映射到不同路由的参数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22973522/
简而言之:我想从可变参数模板参数中提取各种选项,但不仅通过标签而且通过那些参数的索引,这些参数是未知的 标签。我喜欢 boost 中的方法(例如 heap 或 lockfree 策略),但想让它与 S
我可以对单元格中的 excel IF 语句提供一些帮助吗? 它在做什么? 对“BaselineAmount”进行了哪些评估? =IF(BaselineAmount, (Variance/Baselin
我正在使用以下方法: public async Task Save(Foo foo,out int param) { ....... MySqlParameter prmparamID
我正在使用 CodeGear RAD Studio IDE。 为了使用命令行参数测试我的应用程序,我多次使用了“运行 -> 参数”菜单中的“参数”字段。 但是每次我给它提供一个新值时,它都无法从“下拉
我已经为信用卡类编写了一些代码,粘贴在下面。我有一个接受上述变量的构造函数,并且正在研究一些方法将这些变量格式化为字符串,以便最终输出将类似于 号码:1234 5678 9012 3456 截止日期:
MySql IN 参数 - 在存储过程中使用时,VarChar IN 参数 val 是否需要单引号? 我已经像平常一样创建了经典 ASP 代码,但我没有更新该列。 我需要引用 VarChar 参数吗?
给出了下面的开始,但似乎不知道如何完成它。本质上,如果我调用 myTest([one, Two, Three], 2); 它应该返回元素 third。必须使用for循环来找到我的解决方案。 funct
将 1113355579999 作为参数传递时,该值在函数内部变为 959050335。 调用(main.c): printf("%d\n", FindCommonDigit(111335557999
这个问题在这里已经有了答案: Is Java "pass-by-reference" or "pass-by-value"? (92 个回答) 关闭9年前。 public class StackOve
我真的很困惑,当像 1 == scanf("%lg", &entry) 交换为 scanf("%lg", &entry) == 1 没有区别。我的实验书上说的是前者,而我觉得后者是可以理解的。 1 =
我正在尝试使用调用 SetupDiGetDeviceRegistryProperty 的函数使用德尔福 7。该调用来自示例函数 SetupEnumAvailableComPorts .它看起来像这样:
我需要在现有项目上实现一些事件的显示。我无法更改数据库结构。 在我的 Controller 中,我(从 ajax 请求)传递了一个时间戳,并且我需要显示之前的 8 个事件。因此,如果时间戳是(转换后)
rails 新手。按照多态关联的教程,我遇到了这个以在create 和destroy 中设置@client。 @client = Client.find(params[:client_id] || p
通过将 VM 参数设置为 -Xmx1024m,我能够通过 Eclipse 运行 Java 程序-Xms256M。现在我想通过 Windows 中的 .bat 文件运行相同的 Java 程序 (jar)
我有一个 Delphi DLL,它在被 Delphi 应用程序调用时工作并导出声明为的方法: Procedure ProduceOutput(request,inputs:widestring; va
浏览完文档和示例后,我还没有弄清楚 schema.yaml 文件中的参数到底用在哪里。 在此处使用 AWS 代码示例:https://github.com/aws-samples/aws-proton
程序参数: procedure get_user_profile ( i_attuid in ras_user.attuid%type, i_data_group in data_g
我有一个字符串作为参数传递给我的存储过程。 dim AgentString as String = " 'test1', 'test2', 'test3' " 我想在 IN 中使用该参数声明。 AND
这个问题已经有答案了: When should I use "this" in a class? (17 个回答) 已关闭 6 年前。 我运行了一些java代码,我看到了一些我不太明白的东西。为什么下
我输入 scroll(0,10,200,10);但是当它运行时,它会传递字符串“xxpos”或“yypos”,我确实在没有撇号的情况下尝试过,但它就是行不通。 scroll = function(xp
我是一名优秀的程序员,十分优秀!