How to Include moment-timezone in Angular 2 App

前端 未结 6 521
别跟我提以往
别跟我提以往 2020-12-31 00:05

I realize, this question is repeated but previous once does not provide apt answer moment package was already installed

1.Installed package

6条回答
  •  误落风尘
    2020-12-31 00:23

    Updated for Angular 4

    Install moment-timezone on your command line:

    npm i -S moment-timezone
    

    Import moment-timezone in your component:

    import * as moment from 'moment-timezone';
    

    Use it according to docs:

    this.time = moment().tz('America/New_York').format('HH:mm:ss z')
    

    16:20:42 EDT

    docs

    moment docs

    moment timezone docs

    note: moment was intentionally not installed or imported as it is a dependency of moment-timezone.

提交回复
热议问题