简体   繁体   English

MVC Razor两级级联ListBox不会过滤

[英]MVC Razor two level Cascading ListBox won't filter

I tried to implement the cascade example of http://www.devcurry.com/2013/01/aspnet-mvc-cascading-dropdown-list.html 我试图实现http://www.devcurry.com/2013/01/aspnet-mvc-cascading-dropdown-list.html的层叠示例

But when running I don't get into success. 但是,当我跑步时,我并不会成功。 I always get an error. 我总是会出错。 I would appreciate someone to review my codes. 我希望有人审核我的代码。 I can't figure out where the error is. 我不知道错误在哪里。

Model 模型

//LineMaintenance.cs
namespace SchneiderDMS.Models
{
using System;
using System.Collections.Generic;

public partial class LineMaintenance
{
    public int ID { get; set; }
    public Nullable<int> LineID { get; set; }
    public Nullable<System.DateTime> StartTime { get; set; }
    public Nullable<System.DateTime> AcknowlegeTime { get; set; }
    public Nullable<System.DateTime> EndTime { get; set; }
    public Nullable<int> TypeOfProblemID { get; set; }
    public Nullable<int> ProblemID { get; set; }
    public string ProblemDescription { get; set; }
    public virtual Line Line { get; set; }
    public virtual Problem Problem { get; set; }
    public virtual TypeOfProblem TypeOfProblem { get; set; }
}
}


//Problem.cs
namespace SchneiderDMS.Models
{
using System;
using System.Collections.Generic;

public partial class Problem
{
    public Problem()
    {
        this.LineMaintenances = new HashSet<LineMaintenance>();
    }

    public int ID { get; set; }
    public Nullable<int> TypeOfProblemID { get; set; }
    public string Name { get; set; }
    public virtual ICollection<LineMaintenance> LineMaintenances { get; set; }
    public virtual TypeOfProblem TypeOfProblem { get; set; }
}
}


//TypeOfProblem.cs
namespace SchneiderDMS.Models
{
using System;
using System.Collections.Generic;

public partial class TypeOfProblem
{
    public TypeOfProblem()
    {
        this.LineMaintenances = new HashSet<LineMaintenance>();
        this.Problems = new HashSet<Problem>();
    }

    public int ID { get; set; }
    public string Name { get; set; }
    public virtual ICollection<LineMaintenance> LineMaintenances { get; set; }
    public virtual ICollection<Problem> Problems { get; set; }
}
}

View - Create.cshtml 查看-Create.cshtml

<div class="col-md-4">
   @Html.LabelFor(model => model.TypeOfProblemID, "TypeOfProblemID", htmlAttributes: new { @class = "control-label", @style = "margin-bottom:10px" })
   @Html.ListBox("TypeOfProblemID", null, htmlAttributes: new { @class = "form-control", @style = "height:150px" })
   @Html.ValidationMessageFor(model => model.TypeOfProblemID, "", new { @class = "text-danger" })
</div>
<div class="col-md-4">
   @Html.LabelFor(model => model.ProblemID, "ProblemID", htmlAttributes: new { @class = "control-label", @style = "margin-bottom:10px" })
   @Html.ListBox("ProblemID", null , htmlAttributes: new { @class = "form-control", @style = "height:150px" })
   @Html.ValidationMessageFor(model => model.ProblemID, "", new { @class = "text-danger" })
</div>

@section Scripts {
@Scripts.Render("~/bundles/jqueryvalc")
<script> 
$(document).ready(function () 
{ 
    //Dropdownlist Selectedchange event 
    $("#TypeOfProblemID").change(function () 
    { 
        $("#ProblemID").empty(); 
        $.ajax({ 
            type:'POST', 
            url: '@Url.Action("SelectProblems")', 
            dataType: 'json', 
            data: { id: $("#TypeOfProblemID").val() }, 
            success: function (Problems) 
            { 
                // Problems contains the JSON formatted list 
                // of Problems passed from the controller 
                $.each(Problems, function (i, Problem) 
                { 
                    $("#ProblemID").append('<option value="' 
                     + Problem.ID + '">' 
                     + Problem.Name + '</option>'); 
                }); 
            }, 
            error: function (ex) 
            { 
                alert('Failed to retrieve Problems.' + ex); 
            } 
        }); 
        return false; 
    }) 
}); 
</script>
}

Controller - LineMaintenance.cs 控制器-LineMaintenance.cs

    // GET: LineMaintenances/Create
    public ActionResult Create()
    {
        ViewBag.LineID = new SelectList(db.Lines, "ID", "Name");
        ViewBag.ProblemID = new SelectList(db.Problems, "ID", "Name");
        ViewBag.TypeOfProblemID = new SelectList(db.TypeOfProblems, "ID", "Name");
        return View();
    }

    //Returns Json Result
    public JsonResult SelectProblems(int id)
    {
        db.Configuration.ProxyCreationEnabled = false;
        IEnumerable<Problem> Problems = db.Problems.Where(p => p.TypeOfProblemID == id);
        return Json(Problems);
    }

    // POST: LineMaintenances/Create
    // To protect from overposting attacks, please enable the specific properties you want to bind to, for 
    // more details see http://go.microsoft.com/fwlink/?LinkId=317598.
    [HttpPost]
    [ValidateAntiForgeryToken]
    public async Task<ActionResult> Create([Bind(Include = "ID,LineID,StartTime,AcknowlegeTime,EndTime,TypeOfProblemID,ProblemID,ProblemDescription")] LineMaintenance lineMaintenance)
    {
        if (ModelState.IsValid)
        {
            db.LineMaintenances.Add(lineMaintenance);
            await db.SaveChangesAsync();
            return RedirectToAction("Index");
        }

        ViewBag.LineID = new SelectList(db.Lines, "ID", "Name", lineMaintenance.LineID);
       // ViewBag.ProblemID = new SelectList(db.Problems, "ID", "Name", lineMaintenance.ProblemID);
        ViewBag.TypeOfProblemID = new SelectList(db.TypeOfProblems, "ID", "Name", lineMaintenance.TypeOfProblemID);
        return View(lineMaintenance);
    }

In ur code when ur returning json result modify it as follow 在您的代码中,当您返回json结果时,将其修改如下

public JsonResult SelectProblems(int id)
{
    db.Configuration.ProxyCreationEnabled = false;
    IEnumerable<Problem> Problems = db.Problems.Where(p => p.TypeOfProblemID == id);
    return Json(Problems,JsonRequestBehavior.AllowGet);
}

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

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