清除 ViewBag?
Clear the ViewBag?
有什么方法可以清除ViewBag
吗?
ViewBag
没有setter,所以不能简单的取零:
ViewBag = null;
我似乎也无法 use reflection 对其进行迭代并清除其动态属性,因为您无法创建 dynamic
.
的实例
注意:我知道 ViewBag
本身有点代码味道,因为它不是强类型的,基本上是一个巨大的全局变量集合。我们正在远离它,但同时仍需要处理它。
你可以打电话
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
对象
有什么方法可以清除ViewBag
吗?
ViewBag
没有setter,所以不能简单的取零:
ViewBag = null;
我似乎也无法 use reflection 对其进行迭代并清除其动态属性,因为您无法创建 dynamic
.
注意:我知道 ViewBag
本身有点代码味道,因为它不是强类型的,基本上是一个巨大的全局变量集合。我们正在远离它,但同时仍需要处理它。
你可以打电话
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
对象