我正在使用可以在这里找到的 ngStorage 模块:https ://github.com/gsklee/ngStorage
我在 localStorage 中设置 lastSeenId 用于实时更新社交提要,因为这是一个混合应用程序(Laravel/AngularJS),我无法将其存储在$scope
.
我StatusesController
每 X 秒得到一个数组或数据(如果没有查看,则什么都没有),我得到数组的最后一项并$localStorage
像这样设置我的 var:
$localStorage.lastStatusSeen = lastId;
我的导航控制器是我为用户设置一些新计数器以查看他们是否遗漏了什么的地方,我得到了这样的 lastSeenId:
$scope.$storage.lastStatusSeen
它被发送到我的 API 以返回许多看不见的状态帖子。
这一切正常,用户在状态页面上,如果有新数据,则将本地存储 var 设置为数据数组中的最后一个 ID。
问题是我NavigationController
没有发现这个变化,并且总是传递lastSeenId
用户第一次访问页面时传递的那个。
有没有办法在本地存储中查看该密钥的更改?
编辑:根据要求,更新代码
app.controllers.navigationController = ['$scope', 'pollingService', '$localStorage', function($scope, pollingService, $localStorage) {
$scope.lastStatusSeen = $localStorage.lastStatusSeen;
$scope.$watch(function () {
return $localStorage.lastStatusSeen;
}, function (newVal, oldVal) {
if (!newVal) {
return;
}
if (newVal !== oldVal) {
// Assign to a local scoped var, or anything, here...
$scope.lastStatusSeen = newVal;
// I suggest call a method to do your logic outside this
//$scope.onIdChange(newVal, oldVal); // If you need oldVal
}
});
pollingService.startPolling('emailCount', 'api/email/new-count', 5000, function(response) {
$scope.emailCount = response.data;
});
pollingService.startPolling('statusCount', 'api/social/new-count?lastid=' + $scope.lastStatusSeen, 5000, function(response) {
$scope.socialCount = response.data;
});
}];