logo头像
Snippet 博客主题

Ionic常用组件

本文于536天之前发表,文中内容可能已经过时。

DatePipe

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
1 引入控件
import { DatePipe } from '@angular/common';

constructor(private datePipe: DatePipe) { }

如果出现 不支持 问题
添加
@Component({
providers: [DatePipe],
selector: 'app-motion',
templateUrl: 'motion.component.html'
})


2 使用
startTime = this.datePipe.transform(new Date("2017-01-4 15:30:10"), 'hh:mm:ss a');

结果 03:30:10 PM
支付宝打赏 微信打赏

打赏