通用的下拉聯動封裝(級聯)

来源:https://www.cnblogs.com/castyuan/archive/2018/08/11/9459452.html
-Advertisement-
Play Games

前言 平時工作中下拉聯動是相對比較麻煩的地方,雖然邏輯簡單,但是需要寫一堆js跟ajax請求。現在打算在.net core mvc下封裝一個下拉聯動組件方便使用。 下麵將實現一個 國家 語言 省市區 的多級聯動 創建實體模型 寫出對應下拉的Action方法 這裡 下拉contorler名稱約定為Dr ...


前言

平時工作中下拉聯動是相對比較麻煩的地方,雖然邏輯簡單,但是需要寫一堆js跟ajax請求。現在打算在.net core  mvc下封裝一個下拉聯動組件方便使用。

下麵將實現一個 國家 語言 省市區 的多級聯動

 

創建實體模型

 1     public class UserModel
 2     {
 3         /// <summary>
 4         /// 用戶名
 5         /// </summary>
 6         public string UserName { get; set; }
 7 
 8 
 9         /// <summary>
10         /// 國家
11         /// </summary>
12         public int CountryId { get; set; }
13 
14         /// <summary>
15         /// 語言
16         /// </summary>
17         public int LanguageId { get; set; }
18 
19         /// <summary>
20         ///21         /// </summary>
22         public int PronviceId { get; set; }
23 
24         /// <summary>
25         ///26         /// </summary>
27         public int CityId { get; set; }
28 
29         /// <summary>
30         ///31         /// </summary>
32         public int GetDistrictId { get; set; }
33 
34     }
35 
36     public class Area
37     {
38         public int Id { get; set; }
39 
40         public string Name { get; set; }
41 
42         public int? ParentId { get; set; }
43     }
44 
45     public class Language
46     {
47         public int Id { get; set; }
48 
49         public int CountryId { get; set; }
50 
51         public string Name { get; set; }
52     }

 

寫出對應下拉的Action方法

這裡  下拉contorler名稱約定為DropdownListController,Action名稱約定為  Get +欄位名的方式,參數名稱約定使用 父級欄位的名稱。這樣在前臺頁面就不用指定獲取數據源的url了

 1   public class DropdownListController : Controller
 2     {
 3         private List<Area> areas;
 4 
 5         private List<Language> languages;
 6 
 7         public DropdownListController()
 8         {
 9             areas = new List<Area>
10             {
11                 new Area { Id = 1, Name = "中國", ParentId = null },
12                 new Area { Id = 2, Name = "美國", ParentId = null },
13                 new Area { Id = 3, Name = "江蘇省", ParentId = 1 },
14                 new Area { Id = 4, Name = "浙江省", ParentId = 1 },
15                 new Area { Id = 5, Name = "紐約州", ParentId = 2 },
16                 new Area { Id = 6, Name = "南京市", ParentId = 3 },
17                 new Area { Id = 7, Name = "杭州市", ParentId = 4 },
18                 new Area { Id = 8, Name = "紐約市", ParentId = 5 },
19                 new Area { Id = 9, Name = "曼哈頓區", ParentId = 8 },
20                 new Area { Id = 10, Name = "老廟區", ParentId = 6 },
21                 new Area { Id = 11, Name = "西湖區", ParentId = 7 }
22             };
23 
24             languages = new List<Language>
25             {
26                 new Language{ Id=1,CountryId=1, Name="簡體中文" },
27                 new Language{ Id=2,CountryId=2, Name="美式英語"},
28             };
29         }
30 
31         public IActionResult GetCountryId()
32         {
33             return Json(areas.FindAll(x => x.ParentId == null).Select(x => new { value = x.Id, text = x.Name }));
34         }
35 
36         public IActionResult GetLanguageId(int countryId)
37         {
38             return Json(languages.FindAll(x => x.CountryId == countryId).Select(x => new { value = x.Id, text = x.Name }));
39         }
40 
41         public IActionResult GetPronviceId(int countryId)
42         {
43             return Json(areas.FindAll(x => x.ParentId == countryId).Select(x => new { value = x.Id, text = x.Name }));
44         }
45 
46         public IActionResult GetCityId(int pronviceId)
47         {
48             return Json(areas.FindAll(x => x.ParentId == pronviceId).Select(x => new { value = x.Id, text = x.Name }));
49         }
50 
51         public IActionResult GetDistrictId(int cityId)
52         {
53             return Json(areas.FindAll(x => x.ParentId == cityId).Select(x => new { value = x.Id, text = x.Name }));
54         }
55     }

前臺Html

引用了 bootstrap, jquery

@model UserModel

 <a asp-action="Edit" class="btn btn-success m-b-15">去編輯頁</a>
<div class="form-inline row">
    <div class="form-group ">
        <label>國家</label>
        <select asp-for="CountryId" class="form-control" asp-items="ViewBag.CountryList"
                data-select-childids="LanguageId,PronviceId">
            <option value="">請選擇</option>
        </select>
    </div>
    <div class="form-group ">
        <label>語言</label>
        <select asp-for="LanguageId" class="form-control">
            <option value="">請選擇</option>
        </select>
    </div>
    <div class="form-group">
        <label></label>
        <select asp-for="PronviceId" class="form-control" data-select-childids="CityId">
         <option value="">請選擇</option>
        </select>
    </div>
    <div class="form-group">
        <label></label>
        <select asp-for="CityId" class="form-control"   data-select-childids="DistrictId">
            <option value="">請選擇</option>
        </select>
    </div>
    <div class="form-group">
        <label></label>
        <select asp-for="DistrictId" class="form-control">
            <option value="">請選擇</option>
        </select>
    </div>
</div>

下拉聯動的js,基於 jquery

$(function () {
    //下拉聯動初始化
    $('select[data-select-childids]').each(function () {
        getChildSelect($(this).attr("id"), true);
    });

    //下拉聯動  data-select-childids 填寫聯動的Id,data-select-url 數據請求路徑,data-select-paramids 追加的參數,data-select-value 當前值
    $('select[data-select-childids]').change(function (e) {
        getChildSelect($(this).attr("id"));
    });

    //清空下拉聯動子選擇項
    function getChildSelect(selectid, isInit) {
        var select = $('#' + selectid);

        var selectchildIds = select.data('select-childids');
        if (!selectchildIds) return;
        var childIds = selectchildIds.split(',')

        for (var i = 0; i < childIds.length; i++) {
            if (!childIds[i]) continue;

            var child = $('#' + childIds[i]);
            var childValue = child.val();
            if (!childValue)
                childValue = child.data("select-value");

            child.empty();

            //預設值設定
            var hasdefault = child.data("select-hasdefault");
            if (hasdefault != "false") {
                child.append('<option value="">請選擇</option>');
            }

            //父級下拉有值時,ajax獲取數據
            if (select.val()) {var url = child.data('select-url') ? child.data('select-url') : '/DropdownList/Get' + child.attr("id");//url預設值
                var verb = child.data('verb') ? child.data('verb') : 'GET';//請求的方法

                var paramObj = {};//追加參數
                getParentSelectParam(selectid, paramObj)

                //追加控制參數
                var paramids = child.data('select-paramids');
                if (paramids) {
                    var paramidsArr = paramids.split(',')
                    for (var k = 0; k < paramidsArr.length; k++) {
                        paramObj[paramidsArr[k]] = $('#' + paramidsArr[k]).val();
                    }
                }

                $.ajax({
                    type: verb, url: url, data: paramObj, async: false,
                    contentype: "application/x-www-form-urlencoded; charset=UTF-8",
                    success: function (data) {
                        if (data) {
                            for (var j = 0; j < data.length; j++) {
                                var selected = data[j].value == childValue ? 'selected = "selected"' : '';
                                child.append('<option value="' + data[j].value + '" ' + selected + '>' + data[j].text + '</option>');
                            }
                        }
                    }
                });
            }

            //子級下拉如果還有下級,非初始化的時候 遞歸
            if (!isInit && child.data('select-childids'))
                getChildSelect(child.attr("id"));

        }
    }

    //遞歸獲取父級選中的值 param追加的url參數
    function getParentSelectParam(selectid, param) {
        var select = $("#" + selectid);
        param[selectid] = $(select).val();

        $('select[data-select-childids]').each(function () {
            var id = $(this).attr("id");
            if (selectid != id) {
                var childids = $(this).data('select-childids');
                if (childids) {
                    childidsArr = childids.split(',');
                    for (var i = 0; i < childidsArr.length; i++) {
                        if (childidsArr[i] == selectid) {
                            getParentSelectParam(id, param);//繼續向父級查找
                        }
                    }
                }
            }
        });
    }
});

後臺 action

 public class HomeController : Controller
    {
        private List<Area> areas;

        public HomeController()
        {
            areas = new List<Area>
            {
                new Area { Id = 1, Name = "中國", ParentId = null },
                new Area { Id = 2, Name = "美國", ParentId = null },
                new Area { Id = 3, Name = "江蘇省", ParentId = 1 },
                new Area { Id = 4, Name = "浙江省", ParentId = 1 },
                new Area { Id = 5, Name = "紐約州", ParentId = 2 },
                new Area { Id = 6, Name = "南京市", ParentId = 3 },
                new Area { Id = 7, Name = "杭州市", ParentId = 4 },
                new Area { Id = 8, Name = "紐約市", ParentId = 5 },
                new Area { Id = 9, Name = "曼哈頓區", ParentId = 8 },
                new Area { Id = 10, Name = "老廟區", ParentId = 6 },
                new Area { Id = 11, Name = "西湖區", ParentId = 7 }
            };
        }

        public IActionResult Index()
        {
            ViewBag.CountryList = areas.FindAll(x => x.ParentId == null).Select(x =>
                                                                         new SelectListItem
                                                                         {
                                                                             Value = x.Id.ToString(),
                                                                             Text = x.Name
                                                                         });

            return View(new UserModel());
        }

        public IActionResult Edit()
        {
            ViewBag.CountryList = areas.FindAll(x => x.ParentId == null).Select(x =>
                                                                         new SelectListItem
                                                                         {
                                                                             Value = x.Id.ToString(),
                                                                             Text = x.Name
                                                                         });

            return View(new UserModel() { CountryId = 2, PronviceId = 5, CityId=8,DistrictId = 9, LanguageId = 2 });
        }
    }

運行效果

 

用法說明

<a asp-action="Index" class="btn btn-success m-b-15">返回</a>
<br /><br />
<div class="form-inline row">
    <div class="form-group ">
        <label>國家</label>
        <select asp-for="CountryId" class="form-control selectList" asp-items="ViewBag.CountryList"
                data-select-childids="LanguageId,PronviceId">
            <option value="">請選擇</option>
        </select>
    </div>
    <div class="form-group ">
        <label>語言</label>
        <select asp-for="LanguageId" class="form-control"
                data-select-value="@Model.LanguageId"  
                data-select-url="/DropDownList/GetLanguageId?id=1" 
                data-select-paramids="CountryId"  
                data-select-hasdefault="false" 
                data-verb="Get" 請求的方式
                >
            <option value="">請選擇</option>
        </select>
    </div>
    <div class="form-group">
        <label></label>
        <select asp-for="PronviceId" class="form-control"
                data-select-childids="CityId"
                data-select-value="@Model.PronviceId"
                data-select-url="/DropDownList/GetPronviceId?id=1"
                data-select-paramids="CountryId"
                >
            <option value="">請選擇</option>
        </select>
    </div>
    <div class="form-group">
        <label></label>
        <select asp-for="CityId" class="form-control"
                data-select-childids="DistrictId"
                data-select-value="@Model.CityId"
                data-select-url="/DropDownList/GetCityId"
                data-select-paramids="PronviceId"
                >
            <option value="">請選擇</option>
        </select>
    </div>
    <div class="form-group">
        <label></label>
        <select asp-for="DistrictId" class="form-control"
                data-select-value="@Model.DistrictId"
                data-select-url="/DropDownList/GetDistrictId"
                >
            <option value="">請選擇</option>
        </select>
    </div>
</div>

 

   data-select-childids設置聯動的select下拉的Id逗號分隔。例如在國家的下拉中 data-select-childids="LanguageId,PronviceId"表示,國家的下拉影響 語言和 省

   data-select-value:   數據載入時的初始值 用在編輯表單時,存儲當前下拉

   data-select-url: 請求的url

   data-select-paramids: 參數值的Id

   

 

 
 
   

 

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

-Advertisement-
Play Games
更多相關文章
  • 編程零基礎如何學習Python 如果你是零基礎,註意是零基礎,想入門編程的話,我推薦你學Python。雖然國內基本上是以C語言作為入門教學,但在麻省理工等國外大學都是以Python作為編程入門教學的。 那麼如何學習Python呢? 第一步:先把刀磨好 俗話說得好,磨刀不誤砍柴工,這個你不得不信,反正 ...
  • 在具備了volatile、CAS和模板方法設計模式的知識之後,我們可以來深入學習下AbstractQueuedSynchronizer(AQS),本文主要想從AQS的產生背景、設計和結構、源代碼實現及AQS應用這4個方面來學習下AQS,文章耗時一個月,所以篇幅有點長,需要一點耐心。 1、AQS產生背 ...
  • Size Balanced Tree 挺有意思的, 適合新手練習 ...
  • 事件是C#的基礎之一,學好事件對於瞭解.NET框架大有好處。 事件最常見的比喻就是訂閱,即,如果你訂閱了我的博客,那麼,當我發佈新博客的時候,你就會得到通知。 而這個過程就是事件,或者說是事件運行的軌跡。 事件是發散,以我的博客為核心,向所有訂閱者發送消息。我們把這種發散稱之為[多播]。 最常見的事 ...
  • 0.簡介 Abp 本身集成了一套許可權驗證體系,通過 ASP.NET Core 的過濾器與 Castle 的攔截器進行攔截請求,併進行許可權驗證。在 Abp 框架內部,許可權分為兩塊,一個是功能(Feature),一個是許可權項(Permission),在更多的時候兩者僅僅是概念不同而已,大體處理流程還是一 ...
  • v4.2.1 更新內容:1.重新定義數據轉發文本協議,使網關與ServerSuperIO以及之間能夠相關交互數據。2.擴展ServerSuperIO動態數據類的方法,更靈活。3.修複Designer增加轉發任務的一個BUG。4.修改數據轉發客戶端和服務端。5.增加硬體網關驅動。 v4.2.1 下載地 ...
  • C#中欄位、屬性和構造函數賦值的問題 提出問題 首先提出幾個問題: 1、如何實現自己的註入框架? 2、欄位和自動屬性的區別是什麼? 3、欄位和自動屬性聲明時的直接賦值和構造函數賦值有什麼區別? 4、為什麼只讀欄位和只讀自動屬性(只有get沒有set訪問器)都可以在構造函數中進行賦值? 5、反射可以給 ...
  • 概述 InfiniteCanvas 是一個 Canvas 控制項,它支持無限畫布的滾動,支持 Ink,文本,格式文本,畫布縮放操作,撤銷重做操作,導入和導出數據。 這是一個非常實用的控制項,在“來畫視頻” UWP 應用的繪畫功能中,也用到了這個控制項,它對不同畫筆的選擇,橡皮擦,直尺和圓形尺,文字輸入和字 ...
一周排行
    -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.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...