4

请提供实时示例,如何以“34 566.00 ek”格式对货币进行排序。在数据表脚本中。

这是 JSFiddle 示例:http: //jsfiddle.net/HEDvf/643/

$('#example').dataTable({
   "aoColumns": [
    null,
   ],        
  "aaSorting": [[ 0, "desc" ]],
  "bStateSave": false,
  "iDisplayLength": 50,
});
4

3 回答 3

12

查看非常广泛的数据表文档。在那里,您将找到几乎所有数据表问题的简单解决方案。例如,有一些小插件功能可以添加对货币列的排序支持。

一个基于你得到的例子:

// add sorting methods for currency columns
jQuery.extend(jQuery.fn.dataTableExt.oSort, {
    "currency-pre": function (a) {
        a = (a === "-") ? 0 : a.replace(/[^\d\-\.]/g, "");
        return parseFloat(a);
    },
    "currency-asc": function (a, b) {
        return a - b;
    },
    "currency-desc": function (a, b) {
        return b - a;
    }
});

// initialize datatable and explicitly set the column type to "currency"
$('#example').dataTable({
    "aoColumns": [{"sType": "currency"}],
    "aaSorting": [[0, "desc"]],
    "bStateSave": false,
    "iDisplayLength": 50,
});

文档链接:

排序:http ://datatables.net/plug-ins/sorting#currency

Datatables 还能够自动检测列类型,但它会因所有不同的格式而变得有点复杂。类型检测:http ://datatables.net/plug-ins/type-detection#currency

于 2013-09-03T16:45:26.270 回答
3

我没有足够的声誉来向@Gigo 的答案添加命令。所以我会发布这个作为答案。

如果您使用欧洲货币格式,一个点 '.' 用作千位分隔符而不是逗号“,”。因此排序脚本将无法正常工作,因为 1.000,00 被解释为 ONE point ZERO

要解决此问题,请将正则表达式更改为:

/[^\d\-\,]/g

点改为逗号,现在 1.000,00 将被解释为千分零。

于 2013-10-04T09:37:10.757 回答
0

可能是一个肮脏的解决方案,但您也可以使用它从字符串中删除数字格式 (,)

jQuery.extend(jQuery.fn.dataTableExt.oSort, {
    "currency-pre": function (a) {
        console.log("PRE "+a);
        
        a = (a === "-") ? 0 : a.split(',').join('').replace(/[^\d\-\.]/g, "");
        return parseFloat(a);
    },
    "currency-asc": function (a, b) {
        console.log("ASC "+a);
        return a - b;
    },
    "currency-desc": function (a, b) {
        console.log("DESC "+a);
        return b - a;
    }
});
于 2021-10-05T06:55:30.133 回答