有没有办法使用字符串键访问 .NET MVC ViewBag 的属性?
我已经将一个值放入 ViewBag 中:
ViewBag.SomeKey = value;
在我看来,我将密钥存储为字符串。
String theKey = "SomeKey";
有没有办法使用此字符串版本的密钥从 Viewbag 访问我的值?
I have a value that I've put in the ViewBag:
ViewBag.SomeKey = value;
In my view I have the key stored as a String.
String theKey = "SomeKey";
Is there a way to access my value from the Viewbag using this String version of the key?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用
ViewData[theKey]
。ViewData
和ViewBag
使用相同的底层存储。Use
ViewData[theKey]
. BothViewData
andViewBag
use the same underlying storage.