0

我有一个列表对象。我想通过 Ajax 函数将列表视图传递给控制器​​ 我的代码如下:

    function Save()
    {
        debugger;
        if(!ValidateInput()) return;
        var oRecipe=RefreshObject();
        var oRecipeDetails=$('#tblRecipeDetail').datagrid('getRows');
        var postData = $.toJSON(oRecipe);
        var mydetailobj= $.toJSON(oRecipeDetails);
//        postData="Hello world!!!!!!! Faruk";
        //return;
        $.ajax({
            type: "GET",
            dataType: "json",
            url: '/Recipe/Save',
            data: { myjsondata : postData, jsondetailobject : mydetailobj},
            contentType: "application/json; charset=utf-8",
            success: function (data) {
                debugger;
                oRecipe = jQuery.parseJSON(data);
                if (oRecipe.ErrorMessage == '' || oRecipe.ErrorMessage == null) {
                    alert("Data Saved sucessfully");
                    window.returnValue = oRecipe;
                    window.close();
                }
                else {
                    alert(oRecipe.ErrorMessage);
                }
            },
            error: function (xhr, status, error) {
                alert(error);
            }

        });
    }

通常,如果我的列表长度 <=3/4,我的代码会成功运行,但是当我的列表长度 >4 时,就会出现问题。我找不到什么是错误?请任何人建议我

注意:这里我尝试通过列表对象转换为 JSON 数据

4

1 回答 1

0

为什么要输入“GET”?很明显,您希望将数据发布回控制器。将其更改为“POST”并尝试。

$.ajax({
            type: "POST",
            dataType: "json",
            ...
于 2013-02-18T04:44:22.720 回答