7

嗨,我在运行业力测试运行时在 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']);

能否请你帮忙 ??

4

1 回答 1

6

ui.unique是一个模块angular-ui-utils。如果使用,它必须包含在 karma conf 中并注入到应用程序中。

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

或者,如果仅使用唯一模块,您可以专门注入ui.unique而不是注入。ui.utils

于 2014-03-27T19:13:51.250 回答