AngularJS错误 - 无法实例化模块ngIdle

时间:2017-02-23 16:42:45

标签: angularjs node.js ng-idle

我有一个Angular应用报告持续错误。

Failed to instantiate module ngIdle due to ...

Error: $injector:nomod
Module Unavailable
Module 'ngIdle' is not available! You either misspelled the module name or forgot to load it. If registering a module ensure that you specify the dependencies as the second argument.

通过npm install ng-idle手动添加模块后,我不断在浏览器中收到错误消息。我甚至在node-modules目录中看到了角度空闲目录。

如何解决此问题?

app.js声明

var app =angular.module('app', ['ngResource', 'LocalStorageModule', 'ui.router', 'kendo.directives', 'datatables' , 'datatables.bootstrap', 'datatables.scroller',  'angularMoment', 'ngAnimate','ngIdle']);

1 个答案:

答案 0 :(得分:0)

我的index.html缺少以下行

<script src="resources/js/idlejs/angular-idle.js"></script>

添加该行解决了错误。