如何刷新与我在mvc中的第一个下拉列表相关的第二个下拉列表的新数据

问题描述 投票:0回答:1

我有两个下拉列表。第一个是国家,第二个是省。两者的数据都从数据库加载。我的国家/地区表仅包含2个字段,即CountryID和CountryName,而Province of表具有3个字段,CountryID,ProvinceID,ProvinceName。当我选择国家下拉列表时,我想刷新我的省下拉列表,这是我的代码:

        <div class="form-group">
            @Html.LabelFor(model => model.Country, htmlAttributes: new { @class = "control-label col-md-2" })
            <div class="col-md-10">
                @{
                    TBSWebApp.Database_Access_Layer.db dblayer2 = new TBSWebApp.Database_Access_Layer.db();
                    ViewBag.category = new SelectList(dblayer2.GetCountry(), "Country1", "Country");
                }
                @Html.DropDownListFor(model => model.Country ,
                (IEnumerable<SelectListItem>)ViewBag.category,

                new { @class = "form-control" })

                @Html.ValidationMessageFor(model => model.Country, "", new { @class = "text-danger" })
            </div>
        </div>

这是用于调用我的数据库并填写记录的

    public IEnumerable<TBSWebApp.Models.ContactAddress> GetCountry()
    {

        SqlCommand com = new SqlCommand("SELECT CountryID,CountryName FROM tblCountry ORDER BY Country", sqlconn);
        SqlDataAdapter da = new SqlDataAdapter(com);
        DataSet ds = new DataSet();
        da.Fill(ds);
        var tankReadings = new List<TBSWebApp.Models.ContactAddress>();
        int x = 0;
        foreach (DataRow drow in ds.Tables[0].Rows)
        {
            var tankReading = new TBSWebApp.Models.ContactAddress
            {
                Country1 = drow["CountryID"].ToString(),
                Country = drow["CountryName"].ToString()

            };

            tankReadings.Add(tankReading);
        }
        return tankReadings.AsEnumerable();
    }

    public IEnumerable<TBSWebApp.Models.ContactAddress> GetProvince(string ID)
    {

        SqlCommand com = new SqlCommand("SELECT ProvinceID,ProvinceName FROM tblProvince WHERE CountryID ='" + ID + "' ORDER BY Province", sqlconn);
        SqlDataAdapter da = new SqlDataAdapter(com);
        DataSet ds = new DataSet();
        da.Fill(ds);
        var tankReadings = new List<TBSWebApp.Models.ContactAddress>();
        int x = 0;
        foreach (DataRow drow in ds.Tables[0].Rows)
        {
            var tankReading = new TBSWebApp.Models.ContactAddress
            {
                Province1 = drow["ProvinceID"].ToString(),
                Province = drow["ProvinceName"].ToString()

            };

            tankReadings.Add(tankReading);
        }
        return tankReadings.AsEnumerable();
    }

现在我不知道如何调用我的省下拉列表来填充基于所选国家/地区的记录。

javascript c# asp.net-mvc model-view-controller dropdown
1个回答
0
投票

您可以使用javascript捕获select标记的事件更改,并通过ajax发送选择的数据选项以获取新的提供者列表。

var selectDom = document.getElementById(\*id_your_select_tag*\);
selectDom.addEventListener("change", function() {
    // call ajax at here 
    var xhttp = new XMLHttpRequest();
    xhttp.onreadystatechange = function() {
        if (this.readyState == 4 && this.status == 200) {
           // xhttp.responseText is response provider list.
           // update select provider at here
        }
    }
    xhttp.open("GET", "your_url_api_get_provider_list_by_id", true);
    xhttp.send();

另一种方法,我可以使用部分视图来显示提供者列表。看到这里Update Partial View with Ajax

© www.soinside.com 2019 - 2024. All rights reserved.