MVC4 PartialViewResult返回视图而不是PartialView

时间:2014-09-12 16:15:41

标签: c# asp.net asp.net-mvc asp.net-mvc-4 viewresult

我的应用程序中有一个LogInOrRegister页面,它调用了2个子操作 LogInOrRegister.cshtml

@{
    ViewBag.Title = "Log in";
}

@Html.Action("Login", "Account", new { returlUrl = ViewBag.ReturnUrl})
@Html.Action("Register", new { returlUrl = ViewBag.ReturnUrl})

@section Scripts {
    @Scripts.Render("~/bundles/jqueryval")
}

Login PartialView是:

@model Com.WTS.Portal.Models.LoginModel
<hgroup class="title">
    <h1>@ViewBag.Title</h1>
</hgroup>

<section id="loginForm">
<h2>Use a local account to log in.</h2>
@using (Html.BeginForm(new { ReturnUrl = ViewBag.ReturnUrl })) {
    @Html.AntiForgeryToken()
    @Html.ValidationSummary(true)

    <fieldset>
    <legend>Log in Form</legend>
    <ol>
        <li>
            @Html.LabelFor(m => m.Email)
            @Html.TextBoxFor(m => m.Email)
            @Html.ValidationMessageFor(m => m.Email)
        </li>
        <li>
            @Html.LabelFor(m => m.Password)
            @Html.PasswordFor(m => m.Password)
            @Html.ValidationMessageFor(m => m.Password)
        </li>
        <li>
            @Html.CheckBoxFor(m => m.RememberMe)
            @Html.LabelFor(m => m.RememberMe, new { @class = "checkbox" })
        </li>
    </ol>
    <input type="submit" value="Log in" />
    </fieldset>
}
</section>

我的AccountController.cs包含以下代码:

    [AllowAnonymous]
    public PartialViewResult Login(string returnUrl)
    {
        ViewBag.ReturnUrl = returnUrl;
        return PartialView();
    }

    [HttpPost]
    [AllowAnonymous]
    [ValidateAntiForgeryToken]
    public PartialViewResult Login(LoginModel model, string returnUrl)
    {
        if (ModelState.IsValid && WebSecurity.Login(model.Email, model.Password, persistCookie: model.RememberMe))
        {
            RedirectToLocal(returnUrl);
        }

        // If we got this far, something failed, redisplay form
        ModelState.AddModelError("", "The user name or password provided is incorrect.");
        return PartialView(model);
    }

我正确看到了我获取页面LogInOrRegister.cshtml的2部分视图

当我提交表单时,如果表单中存在验证错误,则显示视图(无布局),而不是应该是LogInOrRegster的部分视图

有什么想法吗?

3 个答案:

答案 0 :(得分:2)

好的,我找到了te解决方案。通过将路径参数传递给局部视图形式:

@using (Html.BeginForm(new { ReturnUrl = ViewBag.ReturnUrl }))

我认为我们改变了儿童行为的行为。只有删除路由属性:

@using (Html.BeginForm())

PartialView在其容器中呈现。此外,我们可以将POST操作定义为ChildActionOnly,它仍然可以工作:

[HttpPost]
[AllowAnonymous]
[ValidateAntiForgeryToken]
[ChildActionOnly]
public PartialViewResult Login(LoginModel model, string returnUrl)

答案 1 :(得分:1)

因此,如果您查看有关此处https://stackoverflow.com/a/10253786/30850的讨论,您将看到使用了ChildActionOnlyAttribute,以便可以在视图内呈现Action,但无法将其提供给浏览器。

答案 2 :(得分:0)

如果返回类型为PartialViewResult,请在方法public PartialViewResult Login(LoginModel model, string returnUrl)中指定部分视图名称和模型,否则使用ActionResult作为返回类型。ActionResult是一个抽象类,其中因为PartialViewResult是一个子类。