1

我有一个 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,我的浏览器中不断出现错误。我什至在我的节点模块目录中看到了 angular idle 目录。

我该如何解决这个问题?

app.js 声明

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

1 回答 1

1

我的 index.html 缺少以下行

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

添加该行解决了该错误。

于 2017-02-23T18:21:03.223 回答