Angular4_管道转换大小写

页面显示的小写都转换为大写


Angular内置的就是

The chained hero's birthday is{{ birthday | date | uppercase}}

UpperCasePipe

PIPE
npm Package @angular/common
Module import { UpperCasePipe } from '@angular/common';
Source common/src/pipes/case_conversion_pipes.ts

Description

Transforms text to uppercase.


源码:https://github.com/angular/angular/blob/5.0.0-rc.0/packages/common/src/pipes/case_conversion_pipes.ts#L57-L72

你可能感兴趣的:(Angular2.x,Angular4)