MVC $ .ajax调用从不在Edit上执行控制器操作,但在Add上工作

时间:2013-11-15 02:35:40

标签: c# javascript jquery ajax asp.net-mvc

我正在使用MVC5并调用$ .ajax根据客户选择填充我的“细分”下拉列表(某些细分属于某些客户)。当我转到我的添加视图时,以下JavaScript工作正常。但是,当我进入编辑视图并运行完全相同的脚本时,它不起作用。

我在getSubdivisions()控制器方法中放了一个断点,它在Add页面上工作正常。但是,当我在编辑页面上时,$ .ajax调用永远不会命中控制器操作。 $ .ajax调用失败了。有什么问题?

我在“添加”和“编辑”视图的末尾都有以下行:

@Scripts.Render("~/bundles/schedule")

〜/ bundles / schedule文件在BundleConfig.cs中定义:

bundles.Add(new ScriptBundle("~/bundles/schedule").Include("~/Scripts/mainsys/schedule.js"));

这是我的JavaScript ......

try {
    $('#CustomerID').change(function () {
        getSubdivisions();
    });

    getSubdivisions();
}
catch (ex) {
    alert(ex.message);
}

function getSubdivisions() {
    custId = $('#CustomerID').val();

    // remove all of the current options from the list
    $('#SubdivisionID').empty();

    // send request for list of subdivisions
    var jqxhr = $.ajax({
        url: './getSubdivisions',
        type: 'POST',
        data: '{ customerId: ' + custId.toString() + ' }',
        contentType: 'application/json; charset=utf-8',
        dataType: 'json',
        cache: false,
        async: true
    });

    // received list of models...
    jqxhr.done(function (data) {
        if (data == null) return;

        try {
            var ddl = $('#SubdivisionID');

            // add each item to DDL
            $.each(data, function (index, value) {
                ddl.append($('<option></option>', { value: data[index].SubdivisionID }).html(data[index].SubdivisionName))
            });
        }
        catch (ex) {
            alert("Done, but with errors!\n" + ex.message);
        }
    });

    // failed to retrieve data
    jqxhr.error(function (result, errorText, thrownError) {
        alert("Error! Failed to retrieve models! " + errorText + "\n" + thrownError);
    });
}

这是我的控制器方法......

    [HttpPost]
    public string getSubdivisions(int customerId)
    {
        try
        {
            if (customerId <= 0) return null;

            List<s84_Subdivision_Short> lst = s84_Subdivision.listItemsShort(customerId);
            string s = JsonConvert.SerializeObject(lst);
            return s;
        }
        catch (Exception)
        {
            return "";
        }
    }

jqxhr.error ...

errorText is "parsererror" and thrownError is "Invalid character."

更新:在Firefox中,错误显示为“JSON.parse:unexpected character”

2 个答案:

答案 0 :(得分:0)

我更改了$ .ajax调用,因此它不使用相对路径...现在一切正常。

答案 1 :(得分:-1)

使用Html.Raw解决您的问题, 响应字符串已编码,添加   js脚本中的@Html.Raw(data)