在ionic 2项目中使用moment.js包 [英] using moment.js package in ionic 2 project

查看:156
本文介绍了在ionic 2项目中使用moment.js包的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我想在Moment.js包中使用我的项目离子2中的日期,我不知道怎么做
这是链接

解决方案

检查这个链接



1 - 通过NPM安装

  npm安装时刻-S 

2 - 您的手稿文件中的导入

 从'时刻'导入时刻; 

3 - 在您的手稿文件中使用

 让data = moment()。format('YYYYMMDD'); 
让time = moment()。format('HHmmss');
console.log('今天是:',数据+'和时间:',时间);

我希望能给你一个帮助。 :)



编辑:依旧适用于Ionic v3.9.2(2018-03-08)


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

解决方案

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)

这篇关于在ionic 2项目中使用moment.js包的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆