我正在为我们的角应用添加一些websocket功能。 Websocket对象包含在服务中。理想情况下,我们希望我们的包装套接字对象具有标准事件API,以便我们可以在控制器中使用它,如下所示:(抱歉Coffeescript)
angular.module('myApp').controller 'myCtrl', ($scope, socket) ->
update = (msg)->
$scope.apply ->
#do something regarding to the msg
socket.on 'message', update
unregister: ->
socket.off 'message', update
实现这一目标的最佳做法/图书馆是什么?使用jquery? Backbone.Events?任何建议都会有所帮助。谢谢!
答案 0 :(得分:19)
您不需要使用任何库来实现此目的,只需创建一个服务,注入$ rootscope并将事件从那里发布到rootscope,然后在您的控制器中监听该事件。
var socket; // this be the socketio instance.
angular.module("myApp").factory("SocketHandler", function ($rootScope) {
var handler = function (msg) {
$rootScope.$apply(function () {
$rootScope.$broadcast("socketMessageReceived", msg);
});
};
socket.on("message", handler);
$rootScope.$on("unregisterSocket", function () {
socket.off("message", handler);
});
}).controller("myCtrl", function ($scope, SocketHandler) {
var listener;
var addListener = function () {
listener = $scope.$on("messageReceived", function (e, msg) {
console.log("New Message: " + msg);
}); // $on returns a registration function for the listener
};
var removeListener = function () {
if (listener) listener();
};
});