如何在$ scope对象中触发自动变量?
//controller
setInterval(function(){$scope.rand=Math.random(10)},1000);
//template
{{rand}}
Rand在我的页面上没有更新。如何更新我的变量?
答案 0 :(得分:10)
function MyCtrl($scope, $timeout) {
$scope.rand = 0;
(function update() {
$timeout(update, 1000);
$scope.rand = Math.random() * 10;
}());
}
答案 1 :(得分:6)
实际上,最直接的方式是:
function MyCtrl($scope, $interval) {
$scope.rand = 0;
function update() {
$scope.rand = Math.random() * 10;
}
$interval(update, 1000);
}
这就是setInterval()
的Angular等价物答案 2 :(得分:3)
//controller
function UpdateCtrl($scope) {
$scope.rand = 0;
setInterval(function() {
$scope.$apply(function() {
$scope.rand = Math.random(10);
});
}, 1000);
}
和
//template
<div ng-controller="UpdateCtrl">
{{rand}}
</div>