一般的に機能するAngularアプリケーションを起動したいのですが、瞬間を使用すると、「瞬間」が未定義であるというエラーが発生しました。
ここから「角度モーメント」を使用しています
var app = angular.module("MyApp",
[
"ngRoute",
"ui.bootstrap",
"angularMoment",
'angular-jwt',
'angular-storage'
]);
私のpackage.jsonは次のようになります
{
"name": "myapp",
"main": "index.html",
"toolbar":"true",
"dependencies": {
"moment": "*"
}
}
私はそれを使用しようとしています
app.config(function (moment) {
moment().format();
});
つまり、その瞬間は未定義です。
node-webkit find moment を取得するには、package.json をどのように変更する必要がありますか? それとも角モーメント?前もって感謝します。