gpt4 book ai didi

asp.net-mvc - 如何访问请求上下文中 MvcApplication 类的实例属性?

转载 作者:行者123 更新时间:2023-12-02 18:03:47 25 4
gpt4 key购买 nike

在 Controller 内操作您可以:

MvcApplication app = this.HttpContext.ApplicationInstance as MvcApplication;

但是 this.HttpContext.ApplicationInstance 仅保存父类(super class),不保存 Global.asax 中声明的派生类。因此,您在那里声明的任何实例属性均为 null;

有办法解决这个问题吗?难道不应该有一种方法来访问派生的应用程序类吗?

我希望有(我的帮助器类的)实例,作为实例属性存储在应用程序实例中,而不是将它们作为静态类。

或者静态助手没有缺点吗?

最佳答案

有一种方法可以解决这个问题,并且您已经编写了它:

MvcApplication app = this.HttpContext.ApplicationInstance as MvcApplication;

如果您不喜欢这样,请尝试将您的 MvcApplication 类更改为:

public class MvcApplication : HttpApplication
{
public static MvcApplication Instance
{
get
{
// Current could be null, depending on the caller
return HttpContext.Current != null
? HttpContext.Current.ApplicationInstance
: null;
}
}
}

然后您可以通过 MvcApplication.Instance 访问您的应用程序。请注意 Instance 不为 null。

关于asp.net-mvc - 如何访问请求上下文中 MvcApplication 类的实例属性?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18503595/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com