I'm trying to change my angular model after a websocket push from the server. How is it possible to change values like $scope.contacts
each time the server serves new data..?
I'm not sure if it is possible by using $apply
. I know that I can access the DOM element retrieve the scope and then change the values, but there should be a better solution!
I'm really interested in a solution to update the angular model from outside without creating angular modules since I'm using relative data sources that emit change events. Is there no simple way to do that like in Backbone.js where you can say:
var book = new Backbone.Model({ title: 'value' });
book.set("title", "A Scandal in Bohemia");
What I want in angularjs is something like:
function MyController($scope) {
$scope.contacts = [];
}
datasource changed -> function () {
MyController.set('contacts', 'value'); // change angular scope property
}
I'm trying to change my angular model after a websocket push from the server. How is it possible to change values like $scope.contacts
each time the server serves new data..?
I'm not sure if it is possible by using $apply
. I know that I can access the DOM element retrieve the scope and then change the values, but there should be a better solution!
I'm really interested in a solution to update the angular model from outside without creating angular modules since I'm using relative data sources that emit change events. Is there no simple way to do that like in Backbone.js where you can say:
var book = new Backbone.Model({ title: 'value' });
book.set("title", "A Scandal in Bohemia");
What I want in angularjs is something like:
function MyController($scope) {
$scope.contacts = [];
}
datasource changed -> function () {
MyController.set('contacts', 'value'); // change angular scope property
}
Share
Improve this question
edited Dec 19, 2015 at 15:49
T J
43.2k13 gold badges86 silver badges142 bronze badges
asked Feb 5, 2013 at 8:23
Pascal BayerPascal Bayer
2,6138 gold badges33 silver badges51 bronze badges
2
- 2 yes it is possible with $apply – Ajay Singh Beniwal Commented Feb 5, 2013 at 8:36
- @Jimbo Your answer is exactly what I'd already described in my question. I'm searching for an easier way, but I think writing my own factory module is the best solution. – Pascal Bayer Commented Nov 20, 2013 at 12:32
3 Answers
Reset to default 11Look at socket.io angular service:
angular.module('app')
.factory('socket', ['$rootScope', function ($rootScope) {
var socket = io.connect();
return {
on: function (eventName, callback) {
socket.on(eventName, function () {
var args = arguments;
$rootScope.$apply(function () {
callback.apply(socket, args);
});
});
},
emit: function (eventName, data, callback) {
socket.emit(eventName, data, function () {
var args = arguments;
$rootScope.$apply(function () {
if (callback) {
callback.apply(socket, args);
}
});
})
}
};
}]);
and controller using it:
angular.module('app')
.controller('Controller', ['$scope', 'socket', function ($scope, socket) {
socket.emit('register')
socket.on('register', function (data) {
$scope.data = data;
});
}]);
just do it like below
socket.onmessage = function (event) {
scope.$apply(function(){
// modify scope values here
}
};
Well, the marked answer is certainly not a "simple way" as requested by OP. Here's a much simpler solution.
Retrieve the scope wherever you want in your own JavaScript code:
var scope = angular.element($("#elementID")).scope();
Change a value in your Angular $scope
variable, but from your external JavaScript:
scope.$apply(function() {
scope.yourArrayForExample.push({name: 'New, external value'});
});
Here's a JSFiddle.