83

使用:MVC 4、ASP.NET Razor

我收到一个看起来不可能的错误。它告诉我我正在使用空引用,States,但显然它正在被设置。

控制器:

public ActionResult Index()
{
    Dictionary<int, string> states = new Dictionary<int, string>()
    {
        { -1, "a"},
        { 0, "b"},
        { 1, "c"},
        { 2, "d"},
    };

    //assigning states
    ViewBag.States = states;

    foreach (KeyValuePair<int, string> de in ViewBag.States)
    {
        Debug.WriteLine(de.Key);
    }
    return View();
}

风景:

<div class="search-input">
    <select>
        @foreach (KeyValuePair<int, string> de in ViewBag.States)
        {
            <option value="@de.Key">@de.Value</option>
        }
    </select>
</div>

错误:

Cannot perform runtime binding on a null reference
Line 54: @foreach (KeyValuePair<int, string> de in ViewBag.States)
4

6 回答 6

111

找到的解决方案:我的视图中有错字,ViewBag.Typo <-- 这导致了错误,但调试器将异常放置在一个不相关的地方。

于 2013-10-18T20:01:08.667 回答
19

当您的 Razor 代码中有一个 ViewBag Non-Existent调用方法时,会发生此错误。

控制器

public ActionResult Accept(int id)
{
    return View();
}

剃刀:

<div class="form-group">
      @Html.LabelFor(model => model.ToId, "To", htmlAttributes: new { @class = "control-label col-md-2" })
     <div class="col-md-10">
           @Html.Flag(Model.from)
     </div>
</div>
<div class="form-group">
     <div class="col-md-10">
          <input value="@ViewBag.MaximounAmount.ToString()" />@* HERE is the error *@ 
     </div>
</div>

由于某种原因,.net 无法在正确的行中显示错误。

通常这会浪费很多时间。

于 2016-03-20T02:57:46.650 回答
14

当使用反射动态更新不存在的属性时,也会引发此异常。

如果使用反射来动态更新属性值,则值得检查以确保传递PropertyName的属性与实际属性相同。

就我而言,我试图 update Employee.firstName,但该属性实际上是Employee.FirstName.

值得牢记。:)

于 2015-01-05T21:17:57.783 回答
5

我对此错误的解决方案是从另一个引用了@Model.Id. 这个特定的页面没有模型,但错误行与我从未发现的实际错误相差甚远!

于 2016-12-13T02:43:27.827 回答
1

您必须定义不等于 null 的状态。

@if (ViewBag.States!= null)
{
    @foreach (KeyValuePair<int, string> de in ViewBag.States)
    {
        value="@de.Key">@de.Value 
    }
}                                
于 2015-04-24T09:53:44.823 回答
-4

 Dictionary<int, string> states = new Dictionary<int, string>()

作为函数外部和函数内部插入条目的属性,它应该可以工作。

于 2013-10-18T19:46:37.590 回答