如何使用JQuery DataTables从Web方法正确地重新加载数据?

时间:2013-01-17 10:36:10

标签: c# jquery asp.net ajax jquery-datatables

我使用JQuery DataTables插件来处理我的表,最近我切换到服务器端分页和过滤。特别是,我有一个web方法返回数据以填充customers表:

    [WebMethod]
    [ScriptMethod(ResponseFormat = ResponseFormat.Json)]
    public string GetCustomers(string jsonAOData, int mode)
    {
        // ...
    }

在我的页面中,我使用此代码通过AJAX调用检索数据。

var grid = $('#grid').dataTable({
        bJQueryUI: true,
        bLengthChange: false,
        iDisplayLength: listItemsPerPage,
        bDestroy: true,
        "bProcessing": true,
        "bSort": true,
        "sPaginationType": "full_numbers",
        "bServerSide": true,
        "sAjaxSource": "/wsData/GetData.asmx/GetCustomers",
        "fnServerData": function (sSource, aoData, fnCallback) {

            var jsonAOData = JSON.stringify(aoData);

            $.ajax({
                //dataType: 'json', 
                contentType: "application/json; charset=utf-8",
                type: "POST",
                url: sSource,
                data: "{jsonAOData : '" + jsonAOData + "', mode:'0'}",
                success: function (msg) {
                    fnCallback(JSON.parse(msg.d));
                },
                error: function (XMLHttpRequest, textStatus, errorThrown) {
                    alert(XMLHttpRequest.status);
                    alert(XMLHttpRequest.responseText);
                }
            });
        },
        "aoColumnDefs": [
            // my columns structure
        ]
    });

正如您所看到的,我向Web方法传递了两个参数:jsonAOData,其中包含分页和过滤的所有信息,以及mode,它定义了如何从中获取数据D B。 它工作得很好,但是现在我需要在我的表中将数据传递给我的web方法,为mode提供不同的值。

阅读文档我发现fnReloadAjax()函数可以帮助我,但我找不到将它应用于我的问题的正确方法。

我试过这种方式:

grid.fnReloadAjax("/wsData/GetData.asmx/GetCustomers?mode=1");

但它确实无效。你能帮助我吗?我在哪里做错了?

如何将新参数传递给我的网络方法?

2 个答案:

答案 0 :(得分:0)

无法立即发现遗漏/错误的内容 - 但这是我的版本。

$(document).ready(function () {
        jQuery.support.cors = true;

        var sAjaxSourceUrl = '@ViewBag.sAjaxSourceUrl' //passing mine from MVC3 viewbag, but you can hard-code it
        var dt = $('#dataTable').dataTable({
            "bProcessing": true,
            "bSort": true,
            "bServerSide": true,
            "sServerMethod": "POST",
            "sAjaxSource": sAjaxSourceUrl,
            "fnServerData": function (sSource, aoData, fnCallback) {
                var jsonAOData = JSON.stringify(aoData);
                $.ajax({
                    crossDomain: true,
                    type: "POST",
                    url: sSource,
                    data: jsonAOData,
                    dataType: "json",
                    contentType: "application/json; charset=utf-8",
                    success: function (data) {
                        fnCallback($.parseJSON(data));
                    },
                    error: function (XMLHttpRequest, textStatus, errorThrown) {
                        alert("Status: " + XMLHttpRequest.status + "\r\n" + textStatus + "\r\n" + errorThrown);
                    }
                });
            },
            "aoColumnDefs": [
// my columns structure
],
            "sScrollY": "500",
            "bScrollCollapse": true
        });

答案 1 :(得分:0)

我发现fnReloadAjax()对我来说效果不好。 所以在一些论坛后我决定使用fnDraw()

我根据我想要检索的数据定义了一个全局变量mode。 然后我调用fnDraw()。该表格将从Web方法重新绘制加载数据。

在AJAX调用中我设置:

data: "{jsonAOData : '" + jsonAOData + "', mode:'" + mode +"'}",