角度日期过滤器的格式部分不起作用
我想用格式'MM/dd/yyyy
'显示日期。
日期过滤器正在工作,但日期部分的格式不起作用。角度日期过滤器的格式部分不起作用
下一个是我的代码:
this.$filter('date')(this.BeginDate, 'MM/dd/yyyy')
回答:
这里是你需要什么,请你拨打过滤器在控制器的方式一个简单的例子
angular.module('myApp',[]) .run(function($rootScope,$filter){
$rootScope.date = $filter('date')(new Date(),'MM/dd/yyyy'); // the issue is here
})
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.2.23/angular.min.js"></script> <div ng-app="myApp">
{{date}}
</div>
以上是 角度日期过滤器的格式部分不起作用 的全部内容, 来源链接: utcz.com/qa/262113.html