我有一个指令:
app.directive('myDirective', ['my', function(myService){
return {
restrict: 'E',
scope: {
resourcePath: '='
},
priority: 999,
transclude: true,
template: '<ng-transclude ng-if="func()"></ng-transclude>',
link: function($scope){
$scope.func = function(){
return permissionsService.checkSomething(true);
};
}
};}]);
这是服务:
angular.module('services.my', []).service('my', ['$http', function myService($http) {
//public:
this.checkSomething = function (param) {
return param;
};}]);
如何将myService存根并将其注入指令依赖项?
答案 0 :(得分:1)
对于控制器,您可以自己创建控制器。
对于指令依赖,您必须使用$provide
来覆盖默认实现并提供虚拟依赖
beforeEach(module(function ($provide) {
$provide.service('my', function () {
this.checkSomething= function() { };
});
}));