我有一个 _LayoutView:
@{
Layout = "~/Views/Shared/_NavLayout.cshtml";
}
@section styles
{
@RenderSection("styles", required: false)
}
<div class="container" style="padding-top: 60px;">
<div class="row">
<div class="col-md-12">
@Html.Action("AccountNavigation")
</div>
</div>
@RenderSection("InlineTitle", required:false)
@RenderBody()
</div>
@section scripts {
@Scripts.Render("~/bundles/jqueryval")
@RenderSection("scripts", required: false)
}
如果我删除
@Html.Action("AccountNavigation")
否则我得到:
动作方法是:
[ChildActionOnly]
public ActionResult AccountNavigation()
{
var roles = UserManager.GetRoles(User.Identity.GetUserId());
ViewBag.IsAdmin = roles.Contains("Admin");
return PartialView("_AccountNavigatorPartial");
}
我尝试将其剥离为:
[ChildActionOnly]
public ActionResult AccountNavigation()
{
ViewBag.IsAdmin = false;
return null;
}
但这没有什么区别。
使用该布局的子视图之一是 Login。
[AllowAnonymous]
public ActionResult Login(string returnUrl)
{
ViewBag.OidLoginFailed = false;
ViewBag.ReturnUrl = returnUrl;
return View();
}
如果我在其中放置一个中断点,我可以看到它在每个请求中被多次调用并建立 ReturnUrl 直到它失败,因此出现错误消息。这就是我剥离 AccountNavigation ActionMethod 的原因。
我想也许一个匿名请求会通过一些配置设置导致回发,如果匿名重定向到登录并循环它会去,但我看不到触发的位置。
帐户 _AccountNavigatorPartial 只是:
<ul class="nav navbar-nav navbar-Left">
<li>@Html.ActionLink("Manage Credentials", "Credentials", "Account",
routeValues: null, htmlAttributes: new { id = "credentialsLink" })</li>
<li>@Html.ActionLink("Manage Profile", "Profile", "Account",
routeValues: null, htmlAttributes: new { id = "credentialsLink" })</li>
</ul>
所以我要做的就是为帐户导航注入一些 html。我正在使用 ASP.Identity 作为会员资格,但在请求匿名可访问页面时,我看不出这有何不同。