ASP.NET MVC 4中的ViewBag.Title是什么?
我有那个查看文件:
@model IEnumerable<MvcMusicStore.Models.Genre> @{ ViewBag.Title = "Store"; } <h2>Index</h2>
我不知道ViewBag.Title可能会改变什么。
解决方法
从
ASP.NET site:
ViewBag is a dynamic object,which means you can put whatever you want
in to it; the ViewBag object has no defined properties until you put
something inside it.
ViewBag.Title属性只是一个字符串对象。在这种情况下,它正在视图中用于实际定义Title属性。如果你要查看你的_Layout.cshtml文件,你可能会看到如下:
<title>@ViewBag.Title</title>
何时在视图中定义属性?当页面最终呈现时,该属性最终在HTML标记中看起来像:
<title>Store</title>
哪个设置浏览器标题。