angularjs – 错误:[$injector:nomod]模块’ui.bootstrap’不可用!而Karma在webstorm中运行

前端之家收集整理的这篇文章主要介绍了angularjs – 错误:[$injector:nomod]模块’ui.bootstrap’不可用!而Karma在webstorm中运行前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
嗨,我在运行业力测试运行时在webstorm中收到以下错误
Error: [$injector:nomod] Module 'ui.bootstrap','ui.unique' 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.

我看着互联网,他们说检查依赖文件ui.bootstrap可能会错过这样.

但应用程序工作正常

而只在测试时显示错误

在我的karma.conf.js

files: [
            //angular files

            'app/js/vendor/angular/ui.bootstrap.js','app/js/vendor/angular/ui.bootstrap-0.10.0.js','app/js/vendor/angular/angular.js','app/js/vendor/angular/angular-mocks-0.10.6.js','app/js/app.js','test/**/*Spec.js'
        ],

在我的模块声明中

var myApp = angular.module('myApp',['ui.bootstrap']);

能否请你帮忙 ??

ui.unique是一个来自 angular-ui-utils的模块.如果被使用,必须包含在karma conf中并注入应用程序.
var myApp = angular.module('myApp',['ui.bootstrap','ui.utils']);

或者你可以专门注入ui.unique而不是注入ui.utils,如果只使用了唯一的模块.

原文链接:/angularjs/141279.html

猜你在找的Angularjs相关文章