导入moment.js

时间:2017-01-26 13:57:44

标签: ionic2 angular-moment

我正在关注这个example如何在Ionic 2 RC5中导入和使用时刻。

但它无法找到该文件。我的improt在src / index.html:

    <!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
  <meta charset="UTF-8">
  <title>Ionic App</title>
  <meta name="viewport" content="width=device-width, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0, user-scalable=no">
  <meta name="format-detection" content="telephone=no">
  <meta name="msapplication-tap-highlight" content="no">

  <link rel="icon" type="image/x-icon" href="assets/icon/favicon.ico">
  <link rel="manifest" href="manifest.json">
  <meta name="theme-color" content="#4e8ef7">

  <!-- cordova.js required for cordova apps -->
  <script src="cordova.js"></script>


  <!-- un-comment this code to enable service worker
  <script>
    if ('serviceWorker' in navigator) {
      navigator.serviceWorker.register('service-worker.js')
        .then(() => console.log('service worker installed'))
        .catch(err => console.log('Error', err));
    }
  </script>-->

  <link href="build/main.css" rel="stylesheet">

</head>
<body>

  <!-- Ionic's root component and where the app will load -->
  <ion-app></ion-app>

  <!-- The polyfills js is generated during the build process -->
  <script src="build/polyfills.js"></script>

  <!-- The bundle js is generated during the build process -->
  <script src="build/main.js"></script>
  <script src="node_modules/moment/moment.js" />

</body>
</html>

1 个答案:

答案 0 :(得分:12)

根据this链接在ionic2上使用momentjs:

1- npm install moment --save

在您的.ts文件中

2-:

import * as moment from 'moment';

,例如:

ngOnInit() {
   let now = moment().format('LLLL');
   console.log(now);
}