我使用$ interval来调用函数5秒来应用更改,而不会在多个用户连接时刷新页面。 但是我想在函数editCheque之后执行$ interval。所以我把它放在这个函数中,它只适用于当前用户,并且更改不适用于其他用户。你有解决这个问题的解决方案吗?感谢
$interval(function() { $scope.chargerCheques(); }, 5000);
$scope.chargerCheques=function(){
$http({
method: 'get',
url: 'cheque'
}).then(function (response) {
$scope.cheques = response.data;
$scope.init=true;
$scope.sumCurrentDate();
},function (error){
console.log(error, 'can not get data.');
});
};
$scope.editCheque=function(){
.....
}