.html
{{2018-02-26T12:00:14.151Z | amParse : 'YYYY/MM/DD' | amDateFormat : 'LL'}}
上面的结果给出了February 26, 2018
,但我需要结果 FEBRUARY 2018
。
我在这里使用Anular2-Moment模块链接,我必须仅使用此模块。
Angular 2带有几个自定义管道,包括uppercasepipe。要达到您想要的结果:
{{2018-02-26T12:00:14.151Z | amParse : 'YYYY/MM/DD' | amDateFormat : 'MMMM YYYY' | uppercase}}
请注意,AmdateFormat基于MOMMJS文档中的格式:http://momentjs.com/docs/docs/manipulating/add/
最后一步是使用'|将字符串输送到uppercasepipe大写':https://angular.io/api/common/uppercasepipe