考虑以下路线:
context.MapRoute(null, "widgets",
new { controller = "Widgets", action = "Add" },
new { httpMethod = new HttpMethodConstraint("PUT") });
以下控制器:
public class WidgetsController
{
[HttpPut]
public ActionResult Add(WidgetForm model)
{
return DoStuff(); // code here doesn't matter
}
}
以及呈现以下形式的视图(使用HtmlHelper.@Html.HttpMethodOverride(HttpVerbs.Put)
:
<form action="/widgets" method="post">
<!-- many form elements, then -->
<input name="X-HTTP-Method-Override" type="hidden" value="PUT" />
</form>
提交表单时,MVC操作方法选择器不会选择上述操作方法。如果我在左大括号上设置断点,它永远不会被击中。在浏览器中,它返回404页面(我相信这是默认的ActionNotFound行为)。
但是,操作方法选择器会选择使用以下路径添加HttpPut方法:
context.MapRoute(null, "widgets",
new { controller = "Widgets", action = "Add" },
new { httpMethod = new HttpMethodConstraint("PUT", "POST") });
这似乎不对......是吗?在我看来,我应该能够在没有POST约束的情况下做到这一点。 action方法没有用HttpPost修饰,那么为什么POST约束是必要的呢?
答案 0 :(得分:2)
是的。更深入地了解它如何在MVC管道中工作,它实际上是处理这个而不是RouteModule的MVC(ActionMethodSelectorAttribute,ActionInvoker,RedirectToRoute)。
所以在路由模块中,它仍然是一个“POST”请求,而不是“PUT”。