在 MVC 中使用 ViewBag 不好吗?

发布于 2024-10-13 13:43:53 字数 1431 浏览 3 评论 0原文

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

沙与沫 2024-10-20 13:43:53

ViewBag 与之前的 ASP.NET MVC 1 和 2 中的 ViewData 是一样的。它只是恰好是动态的,而不需要像带键的字典一样使用它。我认为这根本不会取代强类型视图,事实上您应该尽可能少地使用 Viewdata/Viewbag。尽可能始终使用强类型视图,因为如果 Viewdata/Viewbag 中的名称发生更改,并且不会在各处进行 ViewData 强制转换,则会导致更少的错误,并使 HTML 更清晰。

The ViewBag is the same thing as ViewData in previous ASP.NET MVC 1 and 2. It just happens to be dynamic instead of needing to use it like a dictionary with keys. I don't think this will replace strongly typed views at all and in fact you should use Viewdata/Viewbag as little as possible. Always use strongly typed views whenever possible since it will lead to fewer errors if the names in your Viewdata/Viewbag change and make the HTML cleaner by not having ViewData casts all over the place.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文