Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

using moment.js package in ionic 2 project

Tags:

angular

ionic2

i want to use in Moment.js package for dates in my project ionic 2 and i'm not sure how to do that this is the link moment js link

i have datetime variable and i want that to be from my zone area. should i do that? because it's in javascript and ionic 2 use in typescript

i tried to do it but it's not works

     constructor(public navCtrl: NavController,private platform:Platform) {

   mydate=new Date();
   mydate=moment.moment().format('MMMM Do YYYY, h:mm:ss a');

  }

when i try to use this

let data = moment().format('YYYYMMDD');
let time = moment().format('HHmmss');
console.log('today is: ', data + ' and time: ', time);

i get this errror enter image description here

like image 699
Manspof Avatar asked Oct 06 '16 10:10

Manspof


1 Answers

Check this link for typescript.

1 - Install via NPM:

npm install moment -S

2 - Import in your Typescript file:

import moment from 'moment';

3 - Use in your Typescript file:

let data = moment().format('YYYYMMDD');
let time = moment().format('HHmmss');
console.log('today is: ', data + ' and time: ', time);

I hope to have been a help to you. :)

EDIT: Still works fine with Ionic v3.9.2 (2018-03-08)

like image 190
mosca90 Avatar answered Sep 22 '22 12:09

mosca90