1
我想獲得UserSession。如何在baseController中獲取UserSession?
public abstract class BaseController : ServiceStackController<CustomUserSession>
{
public AuthService AuthService { get; set; } // NOT Autowired -Problem 1
public BaseController()
{
//this.ControllerContext = null -Problem 2
//UserSession 'UserSession' threw an exception of type System.NullReferenceException' -Problem 3
if (!this.ControllerContext.IsChildAction)
{
}
}
}
但有3個問題,你可以看到。 爲什麼我需要這個?我想在_Layout.cshtml中應用用戶特定的CSS。
如何在Controller中獲取當前用戶會話?