1

こんにちは、mvc 3 のカスケード ドロップダウン リストで ajax を使用しています。コードは次のとおりです。

<script>
function LoadSubCat() {
    var des = $("#CategoryID").val();

    // Call our controller method and process the list of Model objects
    $.getJSON('@Url.Content("~/ProjectController/GetSubCategory")', { Category_ID: des },
        function (subCategory) {
            $("#SubCategory").empty();
            $.each(subCategory, function (i, c) {
                $("#SubCategory").append(
                    $('<option></option>').val(c.id).html(c.name)
                );
            });
    });
}
</script>

意見

<div class="editor-field">
    @Html.DropDownList("CategoryID", String.Empty)
    @Html.ValidationMessageFor(model => model.CategoryID)
</div>
 <div class="editor-label">
    SubCategory
</div>
<div class="editor-field">
    <select id="SubCategory" onchange="LoadSubCat()"></select>
</div>

コントローラ

public ActionResult Create()
{
    ViewBag.CategoryID = new SelectList(db.pjt_Categories, "pjt_Category_ID", "CatName");
    ViewBag.Status = new SelectList(db.pjt_Statuses, "pjt_Status_ID", "StatusName");

    return View();
}

public JsonResult GetSubCategory(string Category_ID)
{
    // Instantiate our context and do whatever goo we need to select the objects we want
    using (laintranet1Entities ctx = new laintranet1Entities())
    {
        return Json(ctx.pjt_SubCategories.Where(d => d.CategoryID == Category_ID).ToList(), JsonRequestBehavior.AllowGet);
    }
}

どこが間違っているのかわかりません。今晩までにこれを終わらせなければならないので、誰か助けてもらえますか。どんな助けでも素晴らしいでしょう、ありがとう。

4

0 に答える 0