2016-01-01 00:00:01 我为上面应用了日期-6ren">
gpt4 book ai didi

javascript - 无法应用 Angular js 内置日期过滤器

转载 作者:行者123 更新时间:2023-12-03 08:03:35 26 4
gpt4 key购买 nike

我的作用域变量保存以下格式的日期:

$scope.thisDay="2016-01-01 00:00:01"

{{thisDay}} --->2016-01-01 00:00:01

我为上面应用了日期过滤器,例如:

{{thisDay | date:'medium'}}

但这似乎不适用于我的情况。关于上述任何建议...

最佳答案

<强> Date 过滤器需要日期类型数据,但您提供的是字符串而不是日期。

尝试这样

$scope.thisDay=new Date("2016-01-01 00:00:01");

JSFIDDLE

如果您不想转换范围内的日期

然后创建一个过滤器,将字符串转换为日期对象

myApp.filter('convert2date', function() {
return function(input) {
return input ? new Date(input) : "";
};
});

将其添加到您的 html

 {{thisDay | convert2date |date:'medium'}}

JSFIDDLE

关于javascript - 无法应用 Angular js 内置日期过滤器,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34490945/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com