字符串格式的智能表日期和金额排序



在智能表中,排序很容易。但是当日期和金额是字符串格式时,如何排序?

app.controller('basicsCtrl', ['$scope', function (scope) {scope.rowCollection = [
{firstName: 'Laurent', lastName: 'Renard', birthDate:'1987-05-21', balance: '1,20,000', email: 'whatever@gmail.com'},
{firstName: 'Blandine', lastName: 'Faivre', birthDate: '1987-04-25', balance: '2,000', email: 'oufblandou@gmail.com'},
{firstName: 'Francoise', lastName: 'Frere', birthDate: '1955-08-27', balance: '4,23,000', email: 'raymondef@gmail.com'}];
}]);

我不能使用,格式函数在我的json。抛出错误。

formatFunction: function (value, formatParameter) {
return value[0];// some function to change string to date.
}

遵循本文档。http://lorenzofox3.github.io/smart-table-website/

有人来帮我吗?我是新来的…

您可以使用过滤器来格式化字符串中的日期

app.filter('formatter', function () {
    return function (inputArray) {
        angular.forEach(inputArray,function(item,index){
            item.birthDate = new Date(item.birthDate)
        });
        return inputArray;
    };
});

在html:

中使用
<smart-table rows="rowCollection | formatter"></smart-table>

相关内容

  • 没有找到相关文章

最新更新