我使用日期管道格式化我的日期,但我只是不能得到我想要的没有解决方法的确切格式。我理解管道错误或只是不可能?
//our root app component import {Component} from 'angular2/core' @Component({ selector: 'my-app',providers: [],template: ` <div> <h2>Hello {{name}}</h2> <h3>{{date | date: 'ddMMyyyy'}},should be {{date | date: 'dd'}}/{{date | date:'MM'}}/{{date | date: 'yyyy'}}</h3> </div> `,directives: [] }) export class App { constructor() { this.name = 'Angular2' this.date = new Date(); } }
管道日期格式错误修复在Angular 2.0.0-rc.2,
this Pull Request。
原文链接:https://www.f2er.com/angularjs/146173.html现在我们可以做传统的方式:
{{valueDate | date: 'dd/MM/yyyy'}}
07002