从其他控制器调用指令控制器中的方法
我有一个有自己的控制器的指令。 请看下面的代码:
var popdown = angular.module('xModules',[]);
popdown.directive('popdown', function () {
var PopdownController = function ($scope) {
this.scope = $scope;
}
PopdownController.prototype = {
show:function (message, type) {
this.scope.message = message;
this.scope.type = type;
},
hide:function () {
this.scope.message = '';
this.scope.type = '';
}
}
var linkFn = function (scope, lElement, attrs, controller) {
};
return {
controller: PopdownController,
link: linkFn,
replace: true,
templateUrl: './partials/modules/popdown.html'
}
});
这意味着成为错误/通知/警告的通知系统。 我想要做的是从另一个控制器(不是指令)来调用此控制器上的功能show
。 当我这样做时,我还希望链接函数检测到某些属性已更改并执行一些动画。
以下是一些代码来举例说明我所要求的内容:
var app = angular.module('app', ['RestService']);
app.controller('IndexController', function($scope, RestService) {
var result = RestService.query();
if(result.error) {
popdown.notify(error.message, 'error');
}
});
因此,在popdown
指令控制器上调用show
时,链接函数也应该被触发并执行动画。 我怎么能做到这一点?
这是一个有趣的问题,我开始考虑如何实现这样的事情。
我想出了这个(小提琴);
基本上,我没有试图从控制器调用指令,而是创建了一个模块来存放所有弹出式逻辑:
var PopdownModule = angular.module('Popdown', []);
我在模块中放了两件东西,一个可以在任何地方注入的API factory
,以及定义实际弹出元素行为的directive
:
工厂只是定义了一些函数的success
和error
并跟踪了一些变量:
PopdownModule.factory('PopdownAPI', function() {
return {
status: null,
message: null,
success: function(msg) {
this.status = 'success';
this.message = msg;
},
error: function(msg) {
this.status = 'error';
this.message = msg;
},
clear: function() {
this.status = null;
this.message = null;
}
}
});
该指令将API注入到其控制器中,并观察api的变化(为了方便起见,我使用了bootstrap css):
PopdownModule.directive('popdown', function() {
return {
restrict: 'E',
scope: {},
replace: true,
controller: function($scope, PopdownAPI) {
$scope.show = false;
$scope.api = PopdownAPI;
$scope.$watch('api.status', toggledisplay)
$scope.$watch('api.message', toggledisplay)
$scope.hide = function() {
$scope.show = false;
$scope.api.clear();
};
function toggledisplay() {
$scope.show = !!($scope.api.status && $scope.api.message);
}
},
template: '<div class="alert alert-{{api.status}}" ng-show="show">' +
' <button type="button" class="close" ng-click="hide()">×</button>' +
' {{api.message}}' +
'</div>'
}
})
然后我定义一个依赖于Popdown
的app
模块:
var app = angular.module('app', ['Popdown']);
app.controller('main', function($scope, PopdownAPI) {
$scope.success = function(msg) { PopdownAPI.success(msg); }
$scope.error = function(msg) { PopdownAPI.error(msg); }
});
HTML看起来像:
<html ng-app="app">
<body ng-controller="main">
<popdown></popdown>
<a class="btn" ng-click="success('I am a success!')">Succeed</a>
<a class="btn" ng-click="error('Alas, I am a failure!')">Fail</a>
</body>
</html>
我不确定它是否完全理想,但它似乎是一种用全球性弹出式指令建立通信的合理方式。
再次,作为参考,小提琴。
您还可以使用事件触发弹出式广告。
这是基于satchmorun解决方案的小提琴。 它不需要PopdownAPI,而是顶层控制器,而不是在作用域链上$broadcast
'成功'和'错误'事件:
$scope.success = function(msg) { $scope.$broadcast('success', msg); };
$scope.error = function(msg) { $scope.$broadcast('error', msg); };
Popdown模块然后为这些事件注册处理函数,例如:
$scope.$on('success', function(event, msg) {
$scope.status = 'success';
$scope.message = msg;
$scope.toggleDisplay();
});
这至少起作用,在我看来这是一个很好的解耦解决方案。 如果出于某种原因被认为是不好的练习,我会让别人加入。
你也可以将指令的控制器暴露给父范围,就像ngForm
的name
属性那样:http: ngForm
: ngForm
在这里你可以找到一个非常基本的例子,它可以如何实现http://plnkr.co/edit/Ps8OXrfpnePFvvdFgYJf?p=preview
在这个例子中,我使用$clear
方法的专用控制器myDirective
(该指令非常简单的公共API)。 我可以将此控制器发布到父范围,并使用在该指令外调用此方法。
上一篇: Call method in directive controller from other controller