Birinin anahtar -> değer çiftleri ile bir veri deposu türü hizmeti varsa küçük performans ipucu :
DataStore adlı bir hizmetiniz varsa, büyük veri nesneniz her değiştiğinde bir zaman damgasını güncelleyebilirsiniz . Bu şekilde, tüm nesneyi derinlemesine izlemek yerine, sadece değişim için bir zaman damgası izliyorsunuz.
app.factory('dataStore', function () {
var store = { data: [], change: [] };
// when storing the data, updating the timestamp
store.setData = function(key, data){
store.data[key] = data;
store.setChange(key);
}
// get the change to watch
store.getChange = function(key){
return store.change[key];
}
// set the change
store.setChange = function(key){
store.change[key] = new Date().getTime();
}
});
Ve bir direktifte sadece değiştirmek için zaman damgasını izliyorsunuz
app.directive("myDir", function ($scope, dataStore) {
$scope.dataStore = dataStore;
$scope.$watch('dataStore.getChange("myKey")', function(newVal, oldVal){
if(newVal !== oldVal && newVal){
// Data changed
}
});
});