我有一个这样的控制器:
public FooController : Controller
{
public ActionResult Index()
{
return View();
}
}
使用索引视图:
@{ Html.RenderPartial("~/Views/Bar/Add", new Models.Bar()); }
Bar 控制器是这样的:
public BarController : Controller
{
public ActionResult Add()
{
var bar = new Bar();
return View(bar);
}
[HttpPost]
public ActionResult Add(Bar bar)
{
if(ModelState.IsValid)
{
_repository.AddBar(bar);
return RedirectToAction("Index", "Foo");
}
// This will return only the partial view (No Layout, no outer view)
return View("Add", bar);
// This will not show validation errors
// return RedirectToAction("Index", "Foo");
}
}
添加视图如下所示:
@model Models.Bar
@using(Html.BeginForm("Add", "Bar", FormMethod.Post))
{
Name: @Html.TextBoxFor(x => x.Name)
<input type="submit" value="Add Bar" />
@Html.ValidationSummary()
}
我的问题是,如果我返回,View("Add", bar)
我会得到部分视图,而没有其他内容(不是我想要的)。但是,如果我改为返回RedirectToAction("Index", "Foo")
它是否通过验证,我当然会丢失验证摘要的任何验证错误。
有没有办法在这样的局部视图中使用验证?