web-dev-qa-db-ja.com

Mvc ViewBag-nullをnullにできない値型であるため、nullを「bool」に変換できません

特定のビューを作成するときにコントローラーでブール値をtrueに設定し、それに応じてビューのヘッダーを変更します。これは非常に単純なはずですが、代わりに次のようになります。

Null参照でランタイムバインディングを実行できない例外の詳細:Microsoft.CSharp.RuntimeBinder.RuntimeBinderException:null参照でランタイムバインディングを実行できません

私がしているすべてはコントローラです:

[AllowAnonymous]
public ActionResult Register()
{
    ViewBag.IsRegistration = true;
    return View();
}

そして、ビューで:

@if (ViewBag.IsRegistration)
{
    <legend>Register using another service.</legend>
}
else
{
    <legend>Use another service to log in.</legend>
}

しかし失敗します:

@if (ViewBag.IsRegistration)

[〜#〜]更新[〜#〜]

関連するコントローラーコード:

[AllowAnonymous]
public ActionResult Register()
{
    ViewBag.IsRegistration = "true";
    return View();
}

レジスタービュー:

@model Mvc.Models.RegisterViewModel
@{
     Layout = "~/Views/Shared/_AccountLayout.cshtml";
     ViewBag.Title = "Register";
}

<hgroup class="title">
    <h1>@ViewBag.Title.</h1>
</hgroup>

<div class="row">
<div class="col-lg-6">
    @using (Html.BeginForm())
    {
        @Html.AntiForgeryToken()
        @Html.ValidationSummary()

        <fieldset class="form-horizontal">
            <legend>Create a new account.</legend>
            <div class="control-group">
                @Html.LabelFor(m => m.UserName, new { @class = "control-label" })
                <div class="controls">
                    @Html.TextBoxFor(m => m.UserName)
                </div>
            </div>
            <div class="control-group">
                @Html.LabelFor(m => m.Password, new { @class = "control-label" })
                <div class="controls">
                    @Html.PasswordFor(m => m.Password)
                </div>
            </div>
            <div class="control-group">
                @Html.LabelFor(m => m.ConfirmPassword, new { @class = "control-label" })
                <div class="controls">
                    @Html.PasswordFor(m => m.ConfirmPassword)
                </div>
            </div>
            <div class="form-actions no-color">
                <input type="submit" value="Register" class="btn" />
            </div>
        </fieldset>
    }
</div>
    <div class="col-lg-6"></div>
  <section id="socialLoginForm">
            @Html.Action("ExternalLoginsList", new { ReturnUrl = ViewBag.ReturnUrl })
        </section>
</div>
@section Scripts {
    @Scripts.Render("~/bundles/jqueryval")
}

ExternalLoginsListパーシャル:

@using Glimpse.Core.Extensions
@using Microsoft.Owin.Security
@model ICollection<AuthenticationDescription>

@if (Model.Count == 0)
{
    <div class="message-info">
        <p>There are no external authentication services configured</p>
    </div>
}
else
{
    using (Html.BeginForm("ExternalLogin", "Account", new { ReturnUrl = ViewBag.ReturnUrl }))
    {
    @Html.AntiForgeryToken()

        <fieldset id="socialLoginList">
            @if (!string.IsNullOrEmpty(ViewBag.IsRegistration))
            {
            <legend>Register using another service.</legend>
            }
            else
            {
            <legend>Use another service to log in.</legend>
            }
            <p>
                @foreach (AuthenticationDescription p in Model) {
                    <button type="submit" class="btn" id="@p.AuthenticationType" name="provider" value="@p.AuthenticationType" title="Log in using your @p.Caption account">@p.AuthenticationType</button>
                }
            </p>
        </fieldset>
    }
}
16
rism

試してください:

@if (ViewBag.IsRegistration == true)
54
acfrancis

私はこれが古い質問であることを知っていますが、私はエレガントな答えを持っていると思うので、誰かが検索後にこれを読んだ場合、ここに私のものがあります:

@if (ViewBag.IsRegistration ?? false)
17
jfren484

コメントのFloods提案に従って、私は引数を渡す必要があります。親ビューからのViewBagは部分ビューに流れません。

したがって、Register Viewのコードでは、

 <section id="socialLoginForm">
       @Html.Action("ExternalLoginsList", new {ReturnUrl = ViewBag.ReturnUrl})
 </section>

<section id="socialLoginForm">
    @Html.Action("ExternalLoginsList",
            new {ReturnUrl = ViewBag.ReturnUrl,
                 IsRegistering = @ViewBag.IsRegistering })
</section>

次に、私のアカウントコントローラーに移動し、次のように変更します。

[AllowAnonymous]
[ChildActionOnly]
public ActionResult ExternalLoginsList(string returnUrl)
{
    ViewBag.ReturnUrl = returnUrl;
    return (ActionResult)PartialView("_ExternalLoginsListPartial", new List<AuthenticationDescription>(AuthenticationManager.GetExternalAuthenticationTypes()));
}

[AllowAnonymous]
[ChildActionOnly]
public ActionResult ExternalLoginsList(string returnUrl, string isRegistering) {
   ViewBag.IsRegistering = (isRegistering.ToLower() == "true");
   ViewBag.ReturnUrl = returnUrl;
   return (ActionResult)PartialView("_ExternalLoginsListPartial", new List<AuthenticationDescription>(AuthenticationManager.GetExternalAuthenticationTypes()));
}

次に、ExternalLoginsで次のことができます。

@if (ViewBag.IsRegistering)

必要に応じて。

したがって、IsRegisteringブール値をコントローラーからメインビューに効果的に渡してから、コントローラーのアクションメソッドに戻り、ViewBagに入れて、子部分ビューのブール値にアクセスできるようにします。

どうもありがとう。

1
rism

これを試して:

コントローラの行を置き換えます。

ViewBag.IsRegistration = true;

ViewBag.IsRegistration = new bool?(true);

そしてあなたのビューの行を置き換えます:

@if (ViewBag.IsRegistration)

@if ((ViewBag.IsRegistration as bool?).Value)

事実上、null許容のブール値をViewBagに入れて、それをアンラップします。

1

nullを確認する前に、trueを確認するだけです。

if (ViewBag.IsRegistration != null && ViewBag.IsRegistration)
1
Nenad

多分そう:

@if ((ViewBag.IsRegistration != null) && (ViewBag.IsRegistration is bool) && (bool)ViewBag.IsRegistration)
{
}
0
Spartak N.

ViewBagの代わりにTempDataを試してください。

からコードを変更する

コントローラ

ViewBag.IsRegistration=true;

TempData["IsReg"]=true;

とビューで

@if((bool)TempData["IsReg"])

子部分ビューの値を使用していて、親アクションにデータを追加しているようです。viewbagの値は、あるアクションから別のアクションのビューにデータを渡すことはできません。 TempDataはセッションを使用しますが、あるアクションにデータを別のアクションビューに渡すために使用できます。

0
Imran

Viewbagのブール値は常にトリッキーです。代わりにこれを試してください

[AllowAnonymous]
        public ActionResult Register()
        {
            ViewBag.Registration = "x";//x or whatever
            return View();
        }

@if (!String.IsNullorEmpty(ViewBag.Registration))
        {
        <legend>Register using another service.</legend>
        }
        else
        {
        <legend>Use another service to log in.</legend>
        }
0
Flood Gravemind