使用Web Socket Angularjs显示警报总数

时间:2015-09-15 02:39:09

标签: angularjs websocket restangular

我有API返回警报总数。我想使用网络套接字(实时)在标题中显示这个数字(数字> 0 - 相同的Facebook通知)。我使用Restangular来调用API。帮我讲解使用它的演示。感谢。

1 个答案:

答案 0 :(得分:0)

也许你应该使用socket.io

http://socket.io/get-started/chat/

然后你可以使用这个包装器

https://github.com/btford/angular-socket-io

你应该“建立”自己的套接字io将把新事件推送到你的应用程序和内部角度你只是“听这个事件”

io.on('notification', function(data) {
  $scope.notifications = data;
})