我正在尝试使用 angular-fullstack 构建一个实时投票应用程序。除了当我收到投票时,我的一切正常,我的百分比没有更新。我已经确定我需要调用 $scope.$apply() 以让 Angular 更新视图,但我不确定如何使用 angular-fullstack 提供的 socket.service.js 来做到这一点。我包括下面的 angular-fullstack 工厂。我不确定在我的控制器中调用 $scope.$apply() 是否会有所作为。我尝试将它称为我的 socket.io 函数的回调,但它似乎没有什么不同。我对 MEAN 和 socket 很陌生,所以我很感激你的帮助。
谢谢!
angular.module('pollv1App')
.factory('socket', function(socketFactory) {
// socket.io now auto-configures its connection when we ommit a connection url
var ioSocket = io('', {
// Send auth token on connection, you will need to DI the Auth service above
// 'query': 'token=' + Auth.getToken()
path: '/socket.io-client'
});
var socket = socketFactory({
ioSocket: ioSocket
});
return {
socket: socket,
/**
* Register listeners to sync an array with updates on a model
*
* Takes the array we want to sync, the model name that socket updates are sent from,
* and an optional callback function after new items are updated.
*
* @param {String} modelName
* @param {Array} array
* @param {Function} cb
*/
syncUpdates: function (modelName, array, cb) {
cb = cb || angular.noop;
/**
* Syncs item creation/updates on 'model:save'
*/
socket.on(modelName + ':save', function (item) {
var oldItem = _.find(array, {_id: item._id});
var index = array.indexOf(oldItem);
var event = 'created';
// replace oldItem if it exists
// otherwise just add item to the collection
if (oldItem) {
array.splice(index, 1, item);
event = 'updated';
} else {
array.push(item);
}
cb(event, item, array);
});
编辑
这是我的控制器:
'use strict';
angular.module('pollv1App')
.controller('VisualizeCtrl', function ($scope, $http, socket) {
$scope.votes = [];
$scope.totalVotes = 0;
$scope.resetVotes = function(){
$http.get('/api/keywords/reset');
$scope.votes = [];
console.log('reset: ' + $scope.votes);
};
$http.get('/api/keywords').success(function(keywords){
$scope.keywords = keywords;
socket.syncUpdates('keyword', $scope.keywords);
socket.syncUpdates('sms', $scope.votes, function(){
$scope.$apply();
});
});
$http.get('/api/sms').success(function(smss){
$scope.votes = smss;
});
});