Ionic2 导入moment.js

Ionic2 导入moment.js,ionic2,angular-moment,Ionic2,Angular Moment,下面我将介绍如何在Ionic 2 RC5中导入和使用矩 但是它找不到文件。我的即兴演讲在src/index.html中: <!DOCTYPE html> <html lang="en" dir="ltr"> <head> <meta charset="UTF-8"> <title>Ionic App</title> <meta name="viewport" content="width=devic

下面我将介绍如何在Ionic 2 RC5中导入和使用矩

但是它找不到文件。我的即兴演讲在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>

离子应用

根据链接在ionic2上使用momentjs:

1-
npm安装时刻--保存

2-在.ts文件中:

import * as moment from 'moment';
例如:

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

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

1-
npm安装时刻--保存

2-在.ts文件中:

import * as moment from 'moment';
例如:

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

如果要将其作为脚本添加到索引中(未建议),则需要再上一层../node_模块/moment/moment.js如果要将其作为脚本添加到索引中(未建议),则需要再上一层../node_模块/moment/moment.js