如何在angularjs中格式化日期

前端之家收集整理的这篇文章主要介绍了如何在angularjs中格式化日期前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我想将日期格式设置为mm / dd / yyyy。我试过以下,没有一个对我有用。
谁能帮我这个?

参考:ui-date

<input ui-date ui-date-format="mm/dd/yyyy" ng-model="valueofdate" /> 

<input type="date" ng-model="valueofdate" />
Angular.js有一个内置的日期过滤器。

demo

// in your controller:
$scope.date = '20140313T00:00:00';

// in your view,date property,filtered with date filter and format 'MM/dd/yyyy'
<p ng-bind="date | date:'MM/dd/yyyy'"></p>

// produces
03/13/2014

您可以看到支持的日期格式in the source for the date filter

编辑:

如果你想在datepicker中获得正确的格式(不清楚如果你使用datepicker或只是试图使用它的格式化),那些支持的格式字符串在这里:https://api.jqueryui.com/datepicker/

原文链接:https://www.f2er.com/angularjs/147031.html

猜你在找的Angularjs相关文章