我正在使用此代码创建一个工厂,用于在控制器,指令和服务之间发布和订阅消息。
angular.module('app', []);
angular.module('app').controller('TheCtrl', function($scope, NotifyingService) {
$scope.notifications = 0;
$scope.notify = function() {
NotifyingService.publish();
};
// ... stuff ...
NotifyingService.subscribe($scope, function somethingChanged() {
// Handle notification
$scope.notifications++;
});
});
angular.module('app').factory('NotifyingService', function($rootScope) {
return {
subscribe: function(scope, callback) {
var handler = $rootScope.$on('notifying-service-event', callback);
scope.$on('$destroy', handler);
},
publish: function() {
$rootScope.$emit('notifying-service-event');
}
};
});
它工作正常,但我想在发布给订阅它的人时传递数据,我该怎么做。 假设我想发布值4,我该如何执行?
答案 0 :(得分:2)
如果我理解正确,您希望将值4
发布到'notifying-service-event'
,并且您希望在订阅者中使用该值。
要发布值,您需要将其传递给emit
函数。
publish: function(msg) {
$rootScope.$emit('notifying-service-event', msg);
}
然后,当您使用此发布功能时,传递您想要的值。
node.on("click", click);
function click() {
NotifyingService.publish(4);
}
处理subscribe
事件时:
NotifyingService.subscribe($scope, function somethingChanged(event,msg) {
console.log(msg); //4
scope.number = msg //or whatever you want
scope.$apply();
});
您可以在此处找到完整示例:https://plnkr.co/edit/CnoTA0kyW7hWWjI6DspS?p=preview
这是问题的答案: Display informations about a bubble chart D3.js in AngularJS