我在指令中有方法,我需要从angularjs服务访问此方法。
例如:
服务,
angular.module('myServiceModule', []).controller('MyController', ['$scope','notify', function($scope, notify) {}]).service('notify', ['$window',function(win) {
}]);
指令,
angular.module('docsSimpleDirective', []).controller('Controller', ['$scope', function($scope) {}]).directive('myCustomer', function($scope) {
$scope.enableEditor = function(){
}
return {
template:
};
});
在我的项目中,我需要从angularjs访问指令方法。 例如,我添加了示例代码 在指令中我有enableEditor()方法,我需要从我的角度服务访问这个方法 我在网上搜索我没有得到适当的解决方案来访问角度服务的指令方法。