清除ViewBag?

时间:2015-03-16 20:17:40

标签: c# asp.net-mvc viewbag

有没有办法清除ViewBag

ViewBag没有制定者,所以不能简单地将其排除在外:

ViewBag = null;

我似乎无法use reflection迭代它并消除其动态属性,因为您无法创建dynamic的实例。

注意:我知道ViewBag本身就有点代码味道,因为它不是强类型的,并且基本上是全局变量的巨大集合。我们正在远离它,但在此期间仍然需要处理它。

1 个答案:

答案 0 :(得分:14)

你可以打电话

ViewData.Clear();

由于ViewBag在内部使用它。

以下是工作示例 - https://dotnetfiddle.net/GmxctI。 如果取消注释注释行,则将清除显示的文本

以下是MVC中ViewBag的current implementation

public dynamic ViewBag
{
    get
    {
        if (_dynamicViewDataDictionary == null)
        {
            _dynamicViewDataDictionary = new DynamicViewDataDictionary(() => ViewData);
        }
        return _dynamicViewDataDictionary;
    }
}

部分DynamicViewDataDictionary

// Implementing this function improves the debugging experience as it provides the debugger with the list of all
// the properties currently defined on the object
public override IEnumerable<string> GetDynamicMemberNames()
{
    return ViewData.Keys;
}

public override bool TryGetMember(GetMemberBinder binder, out object result)
{
    result = ViewData[binder.Name];
    // since ViewDataDictionary always returns a result even if the key does not exist, always return true
    return true;
}

public override bool TrySetMember(SetMemberBinder binder, object value)
{
    ViewData[binder.Name] = value;
    // you can always set a key in the dictionary so return true
    return true;
}

因此,您可以看到它取决于ViewData对象