2

我有一个 angularjs 工厂,我正在向其中注入下划线,并且应用程序运行良好,但是当我尝试在其上编写 jasmine 测试用例时,我得到一个错误下划线提供程序未找到我有我的工厂

angular.module("sample")
.factory("example", example);
 example.$inject = ["$document", "$compile", "$rootScope", "$timeout", "$q", "underscore"];
function example($document, $compile, $rootScope, $timeout, $q, _) {

}

我将我的模块定义为

(function(){
angular.module(samlple,[]);
})();

我的测试用例是

beforeEach(module('sample'));
beforeEach(module('ionic'));
beforeEach(inject(function ($document, $compile, $rootScope, $timeout,underscore,example) {

}

其给出错误错误:[$injector:unpr] 未知提供者:underscoreProvider <- underscore

4

2 回答 2

1

在 index.html 中添加导入下划线,然后将其添加为服务。

var underscore = angular.module('underscore', []);
    underscore.factory('_', function() {
        return window._; // assumes underscore has already been loaded on the page
    });  

//Now we can inject underscoreJS in the controllers
function MainCtrl($scope, _) {
  //using underscoreJS method
  _.max([1,2,3,4]); //It will return 4, which is the maximum value in the array
}

但我建议你使用 lodash!它有更酷的功能。您可以在此处找到有关如何在 Angular 中使用 lodash 的信息。

于 2015-12-21T22:38:15.057 回答
0

借助@Bakhtier 的回答,我使用以下方法让 Karma/Jasmine 识别 lodash,这样我就可以在我的服务以及我的应用程序的其余部分中使用它。

angular.module('app', ['app.services', 'lodash']);
angular.module('app.services', ['lodash']).factory('MyService', ['_', function (_){
    // your code bits
}]);
angular.module('lodash', []).factory('_', function() {
    return window._;
});

希望能帮助别人。

于 2018-02-02T14:51:50.000 回答