rows()。每个函数都不在jquery binded datatable中工作

时间:2017-04-12 03:49:49

标签: jquery ajax asp.net-mvc datatables

您好我在我的MVC页面中使用jquery datatable所以。在1页面中我必须将数据表中的所有数据发送到控制器。所以我做的是将所有数据分成1个数组并将其传递给控制器​​。使用代码

 var AllSelectedData = [];
var selected = [];
    table = $('#Distpopup').DataTable();
    table.rows().every(function () {
        var d = this.data();
        AllSelectedData.push(d);
    });
    $("#dtlist").val(AllSelectedData);

它适用于模型绑定数据表,但在1种情况下,我有一个数据表,使用ajax绑定,在这种情况下,它不工作。任何建议

2 个答案:

答案 0 :(得分:0)

您可以在模型绑定中以及在Ajax中访问表的所有行。

e.g。这是你的数据表初始化。

// Create the XHR object.
function createCORSRequest(method, url) {
  var xhr = new XMLHttpRequest();
  if ("withCredentials" in xhr) {
    // XHR for Chrome/Firefox/Opera/Safari.
    xhr.open(method, url, true);
  } else if (typeof XDomainRequest != "undefined") {
    // XDomainRequest for IE.
    xhr = new XDomainRequest();
    xhr.open(method, url);
  } else {
    // CORS not supported.
    xhr = null;
  }
  return xhr;
}

// Helper method to parse the title tag from the response.
function getTitle(text) {
  return text.match('<title>(.*)?</title>')[1];
}

// Make the actual CORS request.
function makeCorsRequest() {
  // This is a sample server that supports CORS.
  var url = 'https://example.com/document/1234/download';

  var xhr = createCORSRequest('GET', url);
  if (!xhr) {
    alert('CORS not supported');
    return;
  }

  // Response handlers.
  xhr.onload = function() {
    var text = xhr.responseText;
    var title = getTitle(text);
    alert('Response from CORS request to ' + url + ': ' + title);
  };

  xhr.onerror = function() {
    alert('Woops, there was an error making the request.');
  };

  xhr.send();
}

将数据添加到表后,您希望在数组中获取此数据。如果要将数据发送到控制器,请使用JSON.stringify()对数据进行字符串化,然后将其发送到控制器,您可以在与表单字段的模型绑定中使用它,或者也可以使用Ajax请求传递此字符串数据。

var table = $('#Distpopup').DataTable();

我也面临这个问题,看到这个question它仍然没有答案。

答案 1 :(得分:0)

您可以使用数据表回调http://legacy.datatables.net/usage/callbacks

  

使用initcomplete回调函数执行此操作的一种方法   该表已初始化。

$('#Distpopup').DataTable({
          //Other settings
         "fnInitComplete": function (oSettings, json) {
               console.log(json.data);
            },
});
  

使用createdrow函数的另一种方法是创建每一行

var AllSelectedData = [];
    $('#Distpopup').DataTable({
              //Other settings
            "createdRow": function (row, data, index) {
                  AllSelectedData.push(data);
                },
    });