使用local的时间管道的简写

时间:2018-08-24 03:55:37

标签: angular date localization pipe momentjs

我的角度包中装有momentjs管道。

链接:https://www.npmjs.com/package/angular2-moment

有了它,我可以使用amTimeAgo管道获取以前的时间:

{{ myDate | amTimeAgo }}

// Outputs
14 minutes ago
// still too long
{{ myDate | amTimeAgo:true }}
14 minutes

尽管我想生成一个短得多的字符串值。

例如 -14m前

// ------

  • seconds = s
  • 分钟= m
  • 小时= h
  • 天= d
  • months = mo
  • 年= y

或与上面一样短。.

有没有一种方法可以使用本地管道创建此速记文本?

{{ myDate | amTimeAgo | amDateFormat: 'shorter' }}

0 个答案:

没有答案