3

我有一个奇怪的问题。我的观点 :

@{
   ViewBag.Title = "Index";
}

<h2>Index</h2>
@using(Html.BeginForm())
{
     <input type="submit"  value="asds"/>
}
@Html.Action("Index2")

我的控制器:

public class DefaultController : Controller
{
    //
    // GET: /Default1/

    [HttpPost]
    public ActionResult Index(string t)
    {
        return View();
    }


    public ActionResult Index()
    {
        return View();
    }

    //
    // GET: /Default1/

    [HttpPost]

    public ActionResult Index2(string t)
    {
        return PartialView("Index");
    }

            [ChildActionOnly()]
    public ActionResult Index2()
    {
        return PartialView();
    }
}

当我单击[HttpPost]Index(string t)执行按钮时,这很好。但是在那之后[HttpPost]Index2(string t)被执行了,这对我来说真的很奇怪,因为我已经发布了用于Index行动的数据,而不是用于Index2. 我的逻辑告诉我,[ChildActionOnly()]ActionResult Index2()而不是HttpPost一个。

为什么会这样?如何在不重命名操作的情况下覆盖此行为[HttpPost]Index2

4

1 回答 1

2

这是默认行为。这是设计使然。如果您无法更改 POST操作名称,您可以编写一个自定义操作名称选择器,即使当前请求是 POST 请求Index2,也会强制使用 GET操作:Index2

public class PreferGetChildActionForPostAttribute : ActionNameSelectorAttribute
{
    public override bool IsValidName(ControllerContext controllerContext, string actionName, MethodInfo methodInfo)
    {
        if (string.Equals("post", controllerContext.HttpContext.Request.RequestType, StringComparison.OrdinalIgnoreCase))
        {
            if (methodInfo.CustomAttributes.Where(x => x.AttributeType == typeof(HttpPostAttribute)).Any())
            {
                return false;
            }
        }
        return controllerContext.IsChildAction;
    }
}

然后用它装饰你的两个动作:

[HttpPost]
[PreferGetChildActionForPost]
public ActionResult Index2(string t)
{
    return PartialView("Index");
}

[ChildActionOnly]
[PreferGetChildActionForPost]
public ActionResult Index2()
{
    return PartialView();
}
于 2012-08-25T06:46:20.793 回答