ASP.net MVC3 中 ViewBag 元素的生命周期
ViewBag
的值什么时候会被刷新或清除?
When will the values of the ViewBag
be flushed or cleared ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
ViewBag
的值什么时候会被刷新或清除?
When will the values of the ViewBag
be flushed or cleared ?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(1)
当您根据后续请求离开视图时。
ViewBag
在控制器中创建,它将一直存在到视图渲染为止。除此之外,我不建议您使用它并将其替换为视图模型。When you leave the view on subsequent request.
ViewBag
is created in the controller and it will live until the rendering of the view. In addition to this it is something that I would not recommend you using and replace it with view models.