简体   繁体   English

ASP.NET MVC全局变量

[英]ASP.NET MVC Global Variables

如何在ASP.NET MVC中声明全局变量?

Technically any static variable or Property on a class, anywhere in your project, will be a Global variable eg 从技术上讲,项目中任何位置上类的任何静态变量或Property都将是Global变量,例如

public static class MyGlobalVariables
{
    public static string MyGlobalString { get; set; }
}

But as @SLaks says, they can 'potentially' be bad practice and dangerous, if not handled correctly. 但是正如@SLaks所说,如果处理不当,它们可能“是不好的做法,并且很危险”。 For instance, in that above example, you would have multiple requests (threads) trying to access the same Property, which could be an issue if it was a complex type or a collection, you would have to implement some form of locking. 例如,在上面的示例中,您将有多个请求(线程)试图访问相同的Property,如果它是复杂类型或集合,则可能是个问题,您将必须实现某种形式的锁定。

public static class GlobalVariables
{
    // readonly variable
    public static string Foo
    {
        get
        {
            return "foo";
        }
    }

    // read-write variable
    public static string Bar
    {
        get
        {
            return HttpContext.Current.Application["Bar"] as string;
        }
        set
        {
            HttpContext.Current.Application["Bar"] = value;
        }
    }
}

You can put them in the Application: 您可以将它们放入应用程序中:

Application["GlobalVar"] = 1234;

They are only global within the current IIS / Virtual applicition. 它们仅在当前IIS /虚拟应用程序中是全局的。 This means, on a webfarm they are local to the server, and within the virtual directory that is the root of the application. 这意味着,在Webfarm上,它们对于服务器而言是本地的,并且在作为应用程序根目录的虚拟目录中。

For non-static variables, I sorted it out via Application class dictionary as below: 对于非静态变量,我通过Application类字典对其进行了分类 ,如下所示:

At Global.asax.ac: 在Global.asax.ac:

namespace MvcWebApplication 
{ 
    // Note: For instructions on enabling IIS6 or IIS7 classic mode, 
    // visit http://go.microsoft.com/?LinkId=9394801 

    public class MvcApplication : System.Web.HttpApplication 
    { 
        private string _licensefile; // the global private variable

        internal string LicenseFile // the global controlled variable
        { 
            get 
            { 
                if (String.IsNullOrEmpty(_licensefile)) 
                { 
                    string tempMylFile = Path.Combine(Path.GetDirectoryName(Assembly.GetAssembly(typeof(LDLL.License)).Location), "License.l"); 
                    if (!File.Exists(tempMylFile)) 
                        File.Copy(Server.MapPath("~/Content/license/License.l"), 
                            tempMylFile, 
                            true); 
                    _licensefile = tempMylFile; 
                } 
                return _licensefile; 
            } 
        }
        protected void Application_Start()
        {
            Application["LicenseFile"] = LicenseFile;// the global variable's bed

            AreaRegistration.RegisterAllAreas();

            RegisterGlobalFilters(GlobalFilters.Filters);
            RegisterRoutes(RouteTable.Routes);
        }
    }
}

And in Controller: 在控制器中:

namespace MvcWebApplication.Controllers
{
    public class HomeController : Controller
    {
        //
        // GET: /Home/

        public ActionResult Index()
        {
            return View(HttpContext.Application["LicenseFile"] as string);
        }

    }
}

In this way we can have global variables in ASP.NET MVC :) 这样,我们可以在ASP.NET MVC中使用全局变量:)

NOTE: If your object is not string simply write: 注意:如果您的对象不是字符串,只需编写:

return View(HttpContext.Application["X"] as yourType);

You could also use a static class, such as a Config class or something along those lines... 您还可以使用静态类,例如Config类或类似的东西...

public static class Config
{
    public static readonly string SomeValue = "blah";
}

The steel is far from hot, but I combined @abatishchev's solution with the answer from this post and got to this result. 该钢是远离热,但我结合@ abatishchev与从应答解决方案这篇文章 ,并得到了这个结果。 Hope it's useful: 希望它有用:

public static class GlobalVars
{
    private const string GlobalKey = "AllMyVars";

    static GlobalVars()
    {
        Hashtable table = HttpContext.Current.Application[GlobalKey] as Hashtable;

        if (table == null)
        {
            table = new Hashtable();
            HttpContext.Current.Application[GlobalKey] = table;
        }
    }

    public static Hashtable Vars
    {
        get { return HttpContext.Current.Application[GlobalKey] as Hashtable; }
    }

    public static IEnumerable<SomeClass> SomeCollection
    {
        get { return GetVar("SomeCollection") as IEnumerable<SomeClass>; }
        set { WriteVar("SomeCollection", value); }
    }

    internal static DateTime SomeDate
    {
        get { return (DateTime)GetVar("SomeDate"); }
        set { WriteVar("SomeDate", value); }
    }

    private static object GetVar(string varName)
    {
        if (Vars.ContainsKey(varName))
        {
            return Vars[varName];
        }

        return null;
    }

    private static void WriteVar(string varName, object value)
    {
        if (value == null)
        {
            if (Vars.ContainsKey(varName))
            {
                Vars.Remove(varName);
            }
            return;
        }

        if (Vars[varName] == null)
        {
            Vars.Add(varName, value);
        }
        else
        {
            Vars[varName] = value;
        }
    }
}

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM