mvc4 功能變數名稱 映射 Area

来源:http://www.cnblogs.com/hitearth/archive/2017/05/13/6848788.html
-Advertisement-
Play Games

環境說明 項目採用mvc4,有個area,名稱為 demo,訪問路徑 http://localhost:8098/demo,需要把demo.abc.com 映射到改路徑 hosts 配置 127.0.0.1 demo.abc.com 核心代碼 調用代碼 視圖使用 bool b = (string)V ...


環境說明

項目採用mvc4,有個area,名稱為 demo,訪問路徑 http://localhost:8098/demo,需要把demo.abc.com 映射到改路徑

hosts 配置

127.0.0.1    demo.abc.com

核心代碼

 

    public class AreaDomainRegistrationContext
    {
        /// <summary>
        /// 
        /// </summary>
        /// <param name="_domainName">子功能變數名稱 如:www.xxx.com 可以傳 abc</param>
        public AreaDomainRegistrationContext(AreaRegistrationContext _context, string _domainName)
        {
            domainName = _domainName; context = _context;
        }
        private string domainName; private AreaRegistrationContext context;
        private RouteCollection Routes
        {
            get
            {
                if (!DomainRouteTable.DomainRoutes.ContainsKey(domainName))
                {
                    DomainRouteTable.DomainRoutes[domainName] = new RouteCollection();
                }
                return DomainRouteTable.DomainRoutes[domainName];
            }
        }


        public Route MapRoute(string name, string url, object defaults, object constraints = null, string[] namespaces = null)
        {
            if (namespaces == null && context.Namespaces != null)
            {
                namespaces = context.Namespaces.ToArray();
            }

            Route route = Routes.MapRoute(name, url, defaults, constraints, namespaces);
            route.DataTokens["area"] = context.AreaName;
            route.DataTokens["UseNamespaceFallback"] = false;
            route.DataTokens["SubDomain"] = domainName;
            return route;
        }
    }

    public class DomainRouteTable
    {
        private static Dictionary<string, RouteCollection> _instance = new Dictionary<string, RouteCollection>();

        public static Dictionary<string, RouteCollection> DomainRoutes
        {
            get
            {
                return _instance;
            }
        }
    }

    public class DomainRoute : RouteBase
    {
        public ResolveDomainName resolveDomainName = DependencyResolver.Current.GetService<ResolveDomainName>();
        public RouteData d = new RouteData(null, new StopRoutingHandler());

        public override RouteData GetRouteData(HttpContextBase httpContext)
        {
            string domainName = resolveDomainName.Resolve(httpContext);
            //該主機頭沒有配置,返回 null 繼續查找路由
            if (domainName == null) return null;

            if (!DomainRouteTable.DomainRoutes.ContainsKey(domainName)) return d;

            var rs = DomainRouteTable.DomainRoutes[domainName];
            RouteData routeData = rs.GetRouteData(httpContext);
            if (routeData == null) return d;
            return routeData;
        }

        public override VirtualPathData GetVirtualPath(RequestContext requestContext, RouteValueDictionary values)
        {
            string domainName = resolveDomainName.Resolve(requestContext.HttpContext);

            if (domainName == null) return null;
            if (!DomainRouteTable.DomainRoutes.ContainsKey(domainName)) return null;

            var rs = DomainRouteTable.DomainRoutes[domainName];
            VirtualPathData vpd = rs.GetVirtualPathForArea(requestContext, values);
            return vpd;
        }
    }
    public class ResolveDomainName
    {
        public static Dictionary<string, string> DomainMap = new Dictionary<string, string>(StringComparer.OrdinalIgnoreCase);
        public string Resolve(HttpContextBase httpContext)
        {
            string key = httpContext.Request.Headers["host"];
            string value;
            if (DomainMap.TryGetValue(key, out value)) { return value; }
            else return null;
        }
    }

調用代碼

//Global.asax.cs 的 Application_Start 放在最前面
RouteTable.Routes.Add(new DomainRoute());
ResolveDomainName.DomainMap.Add("demo.abc.com:8098", "demo");

// Area demo 的路由註冊
public class demoAreaRegistration : AreaRegistration
{
    public override string AreaName
    {
        get { return "demo"; }
    }

    public override void RegisterArea(AreaRegistrationContext context)
    {
        context.MapRoute(
            name: "demo_default",
            url: "demo/{controller}/{action}",
            defaults: new { controller = "index", action = "index" },
            namespaces: new string[] { "xxx.xxx" });

        var context2 = new AreaDomainRegistrationContext(context, "demo");

        context2.MapRoute(
            name: "demo_default",
            url: "{controller}/{action}",
            defaults: new { controller = "index", action = "index" },
            namespaces: new string[] { "xxx.xxx" });
    }
}

視圖使用 bool b = (string)ViewContext.RouteData.DataTokens["SubDomain"] != null; 可以判斷請求是否使用demo.abc.com功能變數名稱訪問

使用 http://demo.abc.com:8098/ 和 http://localhost:8098/demo 都可以訪問Area demo


您的分享是我們最大的動力!

-Advertisement-
Play Games
更多相關文章
  • 假如我們要做很多事情的時候,比如說我們要輸出上百個數字,一個一個輸出的話不僅麻煩而且費時多、效率低。這時C#就為我們提供了更為簡單的輸出方法,即迴圈。迴圈類型有多種,這裡我比較兩種迴圈方式:while迴圈&for迴圈。 首先來說說while迴圈: While迴圈的格式非常簡單: While(迴圈條件 ...
  • 同樣和前面一樣新建一個空的Web項目,都在根目錄添加Module,Models,Views文件夾 添加Nuget包 在Models文件夾裡面添加UserModel類 在Models文件夾裡面添加Userdatabase類 在Module文件夾中添加AuthModule類,如下代碼 在Module文件 ...
  • 遙想一周前我還是一隻剛剛走到前端門口的菜菜鳥,現在已經變成了一隻菜鳥,鬼知道這一周都經歷了什麼,還好我現在還是一隻快樂的菜鳥。 最開始認識了C#語言中的代碼,運算符,各種數據類型,變數、、、、覺得還挺簡單的哇,每天都很輕鬆,但這隻是個開始,然後就遇到for迴圈,它讓我開始懷疑自己的智商了,迴圈就迴圈 ...
  • 由於for迴圈可以通過控制迴圈變數的初始值和迴圈結束條件來改變遍歷的區間,所以在排序或者遍歷的時候,利用for迴圈就比較簡單,以下是本人學習後得到的一些總結案例。 1.排序的應用 1)交換排序:通過取出的數和該數位置後面剩餘的其他數逐一進行比較,將最大的或者最小的一個數放在一組數的首位,然後再將第二 ...
  • 1. using 代替了 try…catch…finally 因為之前是學 Java 的,在連接資料庫或者進行文件讀寫操作時很自然的就使用了 try…catch…finally…,在 C# 中這樣寫也肯定可以但是還有一種更優雅的寫法(我看到別人這樣說),那就是使用 using 關鍵字。 在使用各種流... ...
  • 在UWP UI系統中,使用Shape是繪製2D圖形最簡單的方式,小到圖標,大到圖表都用到Shape的派生類,可以說有舉足輕重的地位。幸運的是從Silverlight以來Shape基本沒有什麼大改動,簡直是UWP中的一股清流。 上圖來自Pro Silverlight 5 in C ,可見Silverl ...
  • 先寫下一般的用法,就是在 vs 中添加 ILDASM 工具。 添加步驟: 工具----》外部工具-----》添加; 標題我一般取為 ILDASM,命令那一欄是要選擇 ILDASM 的路徑, 我的是【C:\Program Files (x86)\Microsoft SDKs\Windows\v7.0A... ...
  • VS2012沒有自帶打包工具,所以要先下載並安裝一個打包工具。我採用微軟提供的打包工具: InstallShield2015LimitedEdition。下載地址:http://pan.baidu.com/s/1c229wdU,密碼:nbnd。註意:把打包工具安裝好後,先使用註冊碼激活後再進行打包, ...
一周排行
    -Advertisement-
    Play Games
  • 移動開發(一):使用.NET MAUI開發第一個安卓APP 對於工作多年的C#程式員來說,近來想嘗試開發一款安卓APP,考慮了很久最終選擇使用.NET MAUI這個微軟官方的框架來嘗試體驗開發安卓APP,畢竟是使用Visual Studio開發工具,使用起來也比較的順手,結合微軟官方的教程進行了安卓 ...
  • 前言 QuestPDF 是一個開源 .NET 庫,用於生成 PDF 文檔。使用了C# Fluent API方式可簡化開發、減少錯誤並提高工作效率。利用它可以輕鬆生成 PDF 報告、發票、導出文件等。 項目介紹 QuestPDF 是一個革命性的開源 .NET 庫,它徹底改變了我們生成 PDF 文檔的方 ...
  • 項目地址 項目後端地址: https://github.com/ZyPLJ/ZYTteeHole 項目前端頁面地址: ZyPLJ/TreeHoleVue (github.com) https://github.com/ZyPLJ/TreeHoleVue 目前項目測試訪問地址: http://tree ...
  • 話不多說,直接開乾 一.下載 1.官方鏈接下載: https://www.microsoft.com/zh-cn/sql-server/sql-server-downloads 2.在下載目錄中找到下麵這個小的安裝包 SQL2022-SSEI-Dev.exe,運行開始下載SQL server; 二. ...
  • 前言 隨著物聯網(IoT)技術的迅猛發展,MQTT(消息隊列遙測傳輸)協議憑藉其輕量級和高效性,已成為眾多物聯網應用的首選通信標準。 MQTTnet 作為一個高性能的 .NET 開源庫,為 .NET 平臺上的 MQTT 客戶端與伺服器開發提供了強大的支持。 本文將全面介紹 MQTTnet 的核心功能 ...
  • Serilog支持多種接收器用於日誌存儲,增強器用於添加屬性,LogContext管理動態屬性,支持多種輸出格式包括純文本、JSON及ExpressionTemplate。還提供了自定義格式化選項,適用於不同需求。 ...
  • 目錄簡介獲取 HTML 文檔解析 HTML 文檔測試參考文章 簡介 動態內容網站使用 JavaScript 腳本動態檢索和渲染數據,爬取信息時需要模擬瀏覽器行為,否則獲取到的源碼基本是空的。 本文使用的爬取步驟如下: 使用 Selenium 獲取渲染後的 HTML 文檔 使用 HtmlAgility ...
  • 1.前言 什麼是熱更新 游戲或者軟體更新時,無需重新下載客戶端進行安裝,而是在應用程式啟動的情況下,在內部進行資源或者代碼更新 Unity目前常用熱更新解決方案 HybridCLR,Xlua,ILRuntime等 Unity目前常用資源管理解決方案 AssetBundles,Addressable, ...
  • 本文章主要是在C# ASP.NET Core Web API框架實現向手機發送驗證碼簡訊功能。這裡我選擇是一個互億無線簡訊驗證碼平臺,其實像阿裡雲,騰訊雲上面也可以。 首先我們先去 互億無線 https://www.ihuyi.com/api/sms.html 去註冊一個賬號 註冊完成賬號後,它會送 ...
  • 通過以下方式可以高效,並保證數據同步的可靠性 1.API設計 使用RESTful設計,確保API端點明確,並使用適當的HTTP方法(如POST用於創建,PUT用於更新)。 設計清晰的請求和響應模型,以確保客戶端能夠理解預期格式。 2.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...