如何使用mvc选择基于国家/地区的用户?

时间:2017-11-16 13:13:09

标签: javascript c# asp.net asp.net-mvc asp.net-mvc-4

我有两个表一个是国家表另一个是医生表都包含国家字段。如果我根据国家名称从国家/地区选择任何国家名称我想从医生表中显示医生姓名。

<div class="col-lg-4">
                            <fieldset class="form-group">
                                <label class="form-label" for="exampleInputEmail1">Country</label>
                                @Html.DropDownList("CountryID", null, "--- Select Country ---", new { @class = "select2-arrow" })
                                @Html.ValidationMessageFor(model => Model.CountryID, null, new { @style = "color: red" })
                            </fieldset>
                        </div>
                        <div class="col-lg-4">
                            <fieldset class="form-group">
                                <label class="form-label" for="exampleInput">Doctor Name</label>
                                <select id="UserRefID" class="select2-arrow"></select>
                                @Html.ValidationMessageFor(model => Model.UserRefID, null, new { @style = "color: red" })
                            </fieldset>
                        </div>

国家/地区绑定代码:

#region Country
        public void Country_Bind()
        {
            userType type = new userType();
            DataSet ds = type.Get_Country();
            List<SelectListItem> coutrylist = new List<SelectListItem>();
            foreach (DataRow dr in ds.Tables[0].Rows)
            {
                coutrylist.Add(new SelectListItem { Text = dr["CountryName"].ToString(), Value = dr["CountryID"].ToString() });
            }
            ViewBag.CountryID = coutrylist;
        }
        #endregion

DAL:

public DataSet Get_Country()
        {
            SqlCommand cmd = new SqlCommand("Select * From Country", con);
            SqlDataAdapter da = new SqlDataAdapter(cmd);
            DataSet ds = new DataSet();
            da.Fill(ds);
            return ds;
        }

Doctor Bind基于一个国家/地区ID

#region Doctor Bind

    public JsonResult Company_Bind(string CountryID)
    {
        userType type = new userType();
        DataSet ds = type.Get_Doctor(CountryID);
        List<SelectListItem> Doctorlist = new List<SelectListItem>();
        foreach (DataRow dr in ds.Tables[0].Rows)
        {
            Doctorlist.Add(new SelectListItem { Text = dr["Tittle"].ToString() + " " + dr["DoctorName"].ToString(), Value = dr["DoctorID"].ToString() });
        }
        return Json(Doctorlist, JsonRequestBehavior.AllowGet);
    }
    #endregion

public DataSet Get_Doctor(string CountryID)
        {
            SqlCommand com = new SqlCommand("Select * from DoctorRegistration where Country=@Country", con);
            com.Parameters.AddWithValue("@Country", CountryID);
            SqlDataAdapter da = new SqlDataAdapter(com);
            DataSet ds = new DataSet();
            da.Fill(ds);
            return ds;
        }

<script>
        $(document).ready(function () {
            $("#CountryID").change(function () {
                var id = $(this).val();
                $("#UserRefID").empty();
                $.get("Company_Bind", { CountryID: id }, function (data) {
                    var v = "<option>--- Select State ---</option>";
                    $.each(data, function (i, v1) {
                        v += "<option value=" + v1.Value + ">" + v1.Text + "</option>";
                    });
                    $("#UserRefID").html(v);
                });
            });

        });
    </script>

Doctor Table

Country

如果我使用[Authorize]我不能使用ajax函数

 //[Authorize]
    //[InitializeSimpleMembership]
    public class AccountController : Controller
    {
        //
        // GET: /Account/
        public ActionResult Index()
        {
            return View();
        }

        [AllowAnonymous]
        public ActionResult Register()
        {
            UserType_Bind();
            Country_Bind();
            //Doctor_Bind();
            return View();
        }

如果我不使用[Authorize]正常工作

1 个答案:

答案 0 :(得分:1)

您正在传递字符串Company_Bind作为ajax调用的url。因此它将被附加到当前页面url,并将进行调用。

例如,如果您的当前页面为yourBaseUrl/Home/Index,则会致电yourBaseUrl/Home/index/Company_Bind?CountryID=4

如果您当前的网页为yourBaseUrl/Doctors/List,则会致电yourBaseUrl/Doctors/List/Company_Bind?CountryID=4

这会为您提供 404 响应,因为这是您的操作方法的无效网址。

您应该考虑使用Url.Action辅助方法生成操作方法的正确相对路径,而不管您当前的页面。

因此,如果您的javascript代码位于剃刀视图中,您可以直接使用它,如

$.get("@Url.Action("Company_Bind")", { CountryID: id }, function (data) {

});

或者使用接受操作方法名称和控制器名称的Url.Action重载。

$.get("@Url.Action("Company_Bind","Doctors")", { CountryID: id }, function (data) {

});

如果它位于外部js文件中,您仍然可以使用剃刀视图中的Url.Action帮助程序生成URL并将其传递给外部js文件,如this post中所述。