我有一个 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']);