如何/我可以在哪里声明一个像@User这样的对象,以便可以使用@在任何剃刀视图中全局引用它?
类似的东西:
_LoginPartial.cshtml:
@if(Request.IsAuthenticated) { <text>Signed In As <strong>@User.Identity.Name</strong> |
而是引用我的对象:
@if(this && that) { <text>@MyObject.GetData</text> }
解决方法
您可以将Razor页面的基本类型更改为您自己的页面,例如:
public class UserAwareViewPage : System.Web.Mvc.WebViewPage { public IPrincipal User { get { return Thread.CurrentPrincipal; } } }
<system.web.webPages.razor> <host factoryType="System.Web.Mvc.MvcWebRazorHostFactory,System.Web.Mvc,Version=3.0.0.0,Culture=neutral,PublicKeyToken=31BF3856AD364E35" /> <pages pageBaseType="Your.Namespace.UserAwareViewPage"> <namespaces> <add namespace="System.Web.Mvc" /> <add namespace="System.Web.Mvc.Ajax" /> <add namespace="System.Web.Mvc.Html" /> <add namespace="System.Web.Routing" /> </namespaces> </pages> </system.web.webPages.razor>
Phil Haack有一个非常好的blog post on this here。
或者,您可以向System.Web.Mvc.WebViewPage(剃刀页面的基本类型)添加扩展方法,并使用此方法。
public static IPrincipal User(this System.Web.Mvc.WebViewPage page) { return Thread.CurrentPrincipal; }
哪个可以这样使用:
@if(Request.IsAuthenticated) { <text>Signed In As <strong>@User().Identity.Name</strong>