我有一个奇怪的问题。我的观点 :
@{
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
?