-1

我对取值的变量有疑问undefined

在文件 Create.cshtml 我有:

@using (Html.BeginForm("Create", "Enrollment", FormMethod.Post, new
{
    id = "YearCourseFormId",
    data_courseListAction = @Url.Action("CourseList")
})) {
@Html.AntiForgeryToken()
@Html.ValidationSummary(true)

<fieldset>
    <legend>Enrollment</legend>

    <div class="editor-label">
        @Html.LabelFor(model => model.StudentId, "Student")
    </div>
    <div class="editor-field">
        @Html.DropDownList("StudentId",  ViewBag.Student as SelectList, String.Empty, new { @class = "chosen-select", data_placeholder = "Please Select a Student...",style="width:350px;" })
        @Html.ValidationMessageFor(model => model.StudentId)
    </div>


     <div class="editor-label">
        @Html.LabelFor(model => model.Course.YearId, "Year")
    </div>
    <div class="editor-field">
        @Html.DropDownList("YearId", ViewBag.Year as SelectList, String.Empty, new { @class = "chosen-select", data_placeholder = "Please Select a Year...",style="width:250px;" })
        @Html.ValidationMessageFor(model => model.Course.YearId)
    </div>


    <div class="editor-label">
        @Html.LabelFor(model => model.CourseId, "Course")
    </div>
    <div class="editor-field">
        @Html.DropDownList("CourseId", String.Empty)
        @Html.ValidationMessageFor(model => model.CourseId)
    </div>


    <p>
        <input type="submit" value="Create" />
    </p>
</fieldset>

}

在 Jquery 文件中,我有:

$(function () {

$('#YearId').change(function () {
    var URL = $('#YearCourseFormId').data('courseListAction');
    alert(URL);
    $.getJSON(URL + '/' + $('#YearId').val(), function (data) {
        var selectList = $("#CourseId");
        selectList.empty();
        var option = $('<option>');
        selectList.append(option);
        $.each(data, function (index, optionData) {
            option = $('<option>').text(optionData.Text).val(optionData.Value);
            selectList.append(option);
        });

    });
});

});

在这部分 alert(URL);,结果是不确定的。

在 EnrollmentController.cs 我有:

    public ActionResult CourseList(string ID)
    {
        int Year = int.Parse(ID);
        var courses = from s in db.Courses
                          where s.YearId == Year
                          select s;

        if (HttpContext.Request.IsAjaxRequest())
            return Json(new SelectList(
                            courses.ToArray(),
                            "Id",
                            "CourseName")
                       , JsonRequestBehavior.AllowGet);

        return RedirectToAction("Index");
    }

但是这个方法由于错误没有被调用。

问题是什么?

4

1 回答 1

4

您的表单呈现如下:

<form action="/Enrollment/Create" data-courselistaction="..." id="YearCourseFormId" method="post">

</form>

您可以使用以下任何一种方式访问​​:

$('#YearCourseFormId').data('courselistaction');
$('#YearCourseFormId').attr('data-courselistaction');
$('#YearCourseFormId').attr('data-courseListAction');

鉴于 TJ Crowder 对 quirks 的评论data(),使用其中一种解决方案可能会更安全attr()

编辑 - 情节变厚..

铬检查员:

检查员

来源:

来源

我不确定这意味着什么,我的 javascript 片段确实可以获取价值。

于 2013-08-21T21:43:52.480 回答