我正在尝试将时区传递给角度js日期过滤器:
var _date = $filter('date')(input, 'yyyy/MM/dd HH:mm:ss', 'UTC');
其中“input”是以毫秒为单位的时间。在这种情况下,返回的日期时间字符串始终位于本地时区。
参考小提琴示例: http://jsfiddle.net/Cp73s/6312/
请让我知道这个小提琴有什么问题?角度版本是1.5。提前谢谢。
答案 0 :(得分:2)
无法使用
进行转换var _date = $filter('date')(input, 'yyyy/MM/dd HH:mm:ss', 'UTC');
在小提琴中编辑其他方式,
在过滤器中添加了utc转换函数,
myapp.filter('dateFormat', function($filter)
{
var toUTCDate = function(date){
var _utc = new Date(date.getUTCFullYear(), date.getUTCMonth(), date.getUTCDate(), date.getUTCHours(), date.getUTCMinutes(), date.getUTCSeconds());
return _utc;
};
var millisToUTCDate = function(millis){
return toUTCDate(new Date(millis));
};
return function(input)
{
if(input == null){ return ""; }
var _date = $filter('date')(millisToUTCDate(input), "yyyy/MM/dd HH:mm:ss");
return _date.toUpperCase();
};
});
检查此更新的小提琴