0
点赞
收藏
分享

微信扫一扫

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

举报

相关推荐

0 条评论