TempData 集合在 asp.net MVC 中的用途是什么?
TempData 集合在 asp.net MVC 中的实际用途是什么,我需要该集合的优点和缺点,何时需要使用它,共享它的视图,或者有关它的任何有用信息,最后如果有人可以告诉我何时使用它而不是 ViewData?
预先感谢
What is the actual use of TempData collection in asp.net MVC, I need pros and cons of that collection, and when do I need to use it, which views it is shared upon, or any useful information about it, finally if someone can tell me when to use it rather than ViewData?
Thanks in advance
CLOSED as exact duplicate of Difference Between ViewData and TempData?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
TempData 用于在控制器操作之间共享数据。 如果您的控制器执行 RedirectToAction 并且目标操作需要数据(可能是特定的模型实例)来执行操作,则您可以将此数据存储在 TempData 中。 使用 TempData 与将其存储在会话中类似,但仅适用于一次往返。 当您需要将数据传递到另一个控制器操作而不是视图以进行渲染时,可以使用 TempData。
TempData is used to share data between controller actions. If your controller does a RedirectToAction and the target action needs data (perhaps a particular model instance) to act upon, you can store this data in TempData. Using TempData is similar to storing it in the session, but only for one round-trip. You use TempData when you need to pass data to another controller action rather than a view for rendering.