UI-GRID - 将单元格转换为日期格式
UI-GRID - Convert A Cell To Date Format
UI-GRID 中有没有办法将列从长值转换为日期字符串?
有没有一种方法可以做到这一点而不必遍历每个值?
您可以将单元格模板添加到具有日期字段的列,而不是循环。
cellTemplate:'<div class="ui-grid-cell-contents">{{grid.appScope.showDate(123123123)}}</div>'
并在您的范围内创建一个 showDate 方法
$scope.showDate = function(value)
{
return new Date(value);
}
您可以在 showDate 中格式化您的日期。
UI-GRID 中有没有办法将列从长值转换为日期字符串?
有没有一种方法可以做到这一点而不必遍历每个值?
您可以将单元格模板添加到具有日期字段的列,而不是循环。
cellTemplate:'<div class="ui-grid-cell-contents">{{grid.appScope.showDate(123123123)}}</div>'
并在您的范围内创建一个 showDate 方法
$scope.showDate = function(value)
{
return new Date(value);
}
您可以在 showDate 中格式化您的日期。