import {Component} from 'angular2/core'; /** DatePipe 日期格式 UpperCasePipe 全部大写格式 LowerCasePipe 全部小写格式 CurrencyPipe 货币格式 PercentPipe 百分比格式 */ @Component({ selector: 'appTest',/*template: `<p>The hero's birthday is {{ birthday | date }}</p>`*/ template: `<p>The hero's birthday is {{ birthday | date:"MM/dd/yy" }}</p>` }) export class App { birthday = new Date(1988,3,15); // April 15,1988 }原文链接:https://www.f2er.com/angularjs/148892.html