我有一个AngularJS applcation。 在应用程序的右侧,我与客户保持聊天。
html如下:
<div class="recent" ng-show="show_chat_list">
<h2></h2>
<div ng-repeat="customer in recent_customer_list track by $index" ng-click="start_chat(recent_client_id[$index])" class='user'>
<a href="#" ng-class="{'red-background': notify[$index]}">
<img ng-src="">
<div class="user-data">
<span class='name'> {{ notify }} </span>
<span class='name'>{{ customer.name }}</span>
</div>
</a>
</div>
</div>
我通过工厂更新了列表,该工厂每秒都进行轮询以获取新的信息:
factory('Poller', ["$http", "store", "URL", function($http, store, URL){
var data = {
"hairdresser_id": store.get("userId")
}
var poller = function(){
return $http.post(URL.url + 'check_for_notifications', data).then(function(res){
return(res.data);
});
}
return {
poll: poller
};
}]);
在控制器中:
pollData();
function pollData(){
Poller.poll().then(function(res){
$scope.recent_customers_list = res.customers;
console.log($scope.recent_customers_list[0].name);
$scope.recent_client_id = res.clients_id;
$scope.notify = res.notify;
$timeout(pollData, 1000);
});
}
console.log函数始终打印正确的名称(即使我更改了它)但在html中并未反映客户列表的动态更改(例如,如果我更改名称或添加客户端)。
如果我插入
$scope.$apply();
或
$scope.$digest;
<$>在$ timeout行之前我得到了错误:
Error: [$rootScope:inprog] $digest already in progress
如果我在行functino pollData()之后和行Poller.poll()之前插入应用,则会出现此错误:
Error: [$rootScope:inprog] $apply already in progress
但我的名单根本没有更新。我需要刷新以查看更改。 我该如何解决这个问题?
答案 0 :(得分:0)
在您的控制器中,您正在使用
$scope.recent_customers_list
但在你的html中,你正在使用
recent_customer_list
我认为这是一个简单的拼写错误。