Angular4_管道转换大小写

前端之家收集整理的这篇文章主要介绍了Angular4_管道转换大小写前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

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


Angular内置的就是

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

UpperCasePipe

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

原文链接:https://www.f2er.com/angularjs/145541.html

猜你在找的Angularjs相关文章