gpt4 book ai didi

angularjs - 如何在AngularJS中格式化日期

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

我想将日期格式设置为 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 .

编辑:

如果您尝试在日期选择器中获取正确的格式(不清楚您是使用日期选择器还是只是尝试使用它的格式化程序),这些支持的格式字符串位于:https://api.jqueryui.com/datepicker/

关于angularjs - 如何在AngularJS中格式化日期,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22392328/

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