0

良い一日!

私はMVC3とjqueryDataTablesプラグインを使用しています。ポイントは、選択メニュー(さらに複数選択)を使用して列フィルタリングを行うことです。

これが私のJSです。これは、このDataTablesの例と非常によく似ています。

 (function ($) {
    $.fn.dataTableExt.oApi.fnGetColumnData = function (oSettings, iColumn, bUnique, bFiltered, bIgnoreEmpty) {
        // check that we have a column id
        if (typeof iColumn == "undefined") return new Array();

        // by default we only want unique data
        if (typeof bUnique == "undefined") bUnique = true;

        // by default we do want to only look at filtered data
        if (typeof bFiltered == "undefined") bFiltered = true;

        // by default we do not want to include empty values
        if (typeof bIgnoreEmpty == "undefined") bIgnoreEmpty = true;

        // list of rows which we're going to loop through
        var aiRows;

        // use only filtered rows
        if (bFiltered == true) aiRows = oSettings.aiDisplay;
        // use all rows
        else aiRows = oSettings.aiDisplayMaster; // all row numbers

        // set up data array   
        var asResultData = new Array();

        for (var i = 0, c = aiRows.length; i < c; i++) {
            iRow = aiRows[i];
            var aData = this.fnGetData(iRow);
            var sValue = aData[iColumn];

            // ignore empty values?
            if (bIgnoreEmpty == true && sValue.length == 0) continue;

            // ignore unique values?
            else if (bUnique == true && jQuery.inArray(sValue, asResultData) > -1) continue;

            // else push the value onto the result data array
            else asResultData.push(sValue);
        }

        return asResultData;
    } 
} (jQuery));

function fnCreateSelect(aData) {
    var r = '<select><option value=""></option>', i, iLen = aData.length;
    for (i = 0; i < iLen; i++) {
        r += '<option value="' + aData[i] + '">' + aData[i] + '</option>';
    }
    return r + '</select>';
}
$(document).ready(function () {
    var oTable = $('#dataTable').dataTable({
        "sDom": 'W<"clear">lfrtip',
        "sAjaxSource": '@Url.Action("ResourcesWorkflowData", "LineManager")',
        "aoColumns": [
  { "sTitle": "User", "mData": "User" },
  { "sTitle": "Region", "mData": "Region" },
    ]
 });
    /* Add a select menu for each TH element in the table footer */
    $("tfoot th").each(function (i) {
        this.innerHTML = fnCreateSelect(oTable.fnGetColumnData(i));
        $('select', this).change(function () {
            oTable.fnFilter($(this).val(), i);
        });
    });
});

問題は私のaaDataにあります。このような配列の配列を渡す場合:

  "aaData": [
  ['User1', 'Central'],
  ['User2', 'Central'],
]

すべてうまくいきますが、次のようなオブジェクトの配列を作成すると、次のようになります。

       "aaData": [
  {
      "User": "User1",
      "Region": "Central",
  },
  {
      "User": "User2",
      "Region": "Central",
  }
]

jsのこの行に「未定義のプロパティ'長さ'を読み取れません」というエラーが表示されます。

       // ignore empty values?
            if (bIgnoreEmpty == true && sValue.length == 0) continue;

なぜこうなった?ColumnFilterColumnFilterWidgetsなどのアドオンを使用しようとしましたが、どちらの場合も問題が発生しました。何か提案はありますか?

4

1 に答える 1

0

sValue が null のようです。これは、Json のフィールドの 1 つが null であることを意味します。完全な Json を貼り付けることはできますか?

この種の問題には小さなハックがあります。

非フィールドがnullであることを確認するために、次のような簡単なものを書くことができます:

 User = SomeObject.User != null ? SomeObject.User : " ";

値がnullにならなくなるため、これで問題が解決するはずです。

于 2013-05-17T16:49:45.367 に答える