admin管理员组文章数量:1338972
I am working with an AngularJS powered page, and I need to display a running clock inside a read-only input text field (two way bound with data-ng-model)
. To simulate a running clock, I am using a JavaScript scheduler with setTimeout
to call a function every 1000 milliseconds, which updates the $scope'd property value which in turn is bound to that input text field. Somehow the value in the input field is not getting updated. So I placed a <pre />
tag and updated its content using a jQuery selector. That is working fine, so I need help getting the input text field value to also get updated every second.
I have set up a jsFiddle for this example.
The HTML is below:
<body data-ng-app="formApp">
<div data-ng-controller="FormCtrl">
Current Date and Time <input type="text" data-ng-model="formData.currentDateTime" readonly="readonly" size="60" />
</div>
<pre id="currentDateTime" style="font-size:1.5em;">
</pre>
</body>
The AngularJS app module and controller are declared as follows:
(function() {
var formApp = angular.module("formApp", []);
formApp.controller("FormCtrl", function ($scope) {
$scope.formData = {};
$scope.formData.currentDateTime = new Date().toString();
(function updateCDT() {
$scope.formData.currentDateTime = new Date().toString();
document.getElementById("currentDateTime").innerHTML = $scope.formData.currentDateTime;
setTimeout(updateCDT, 1000);
})();
});
})();
I am working with an AngularJS powered page, and I need to display a running clock inside a read-only input text field (two way bound with data-ng-model)
. To simulate a running clock, I am using a JavaScript scheduler with setTimeout
to call a function every 1000 milliseconds, which updates the $scope'd property value which in turn is bound to that input text field. Somehow the value in the input field is not getting updated. So I placed a <pre />
tag and updated its content using a jQuery selector. That is working fine, so I need help getting the input text field value to also get updated every second.
I have set up a jsFiddle for this example.
The HTML is below:
<body data-ng-app="formApp">
<div data-ng-controller="FormCtrl">
Current Date and Time <input type="text" data-ng-model="formData.currentDateTime" readonly="readonly" size="60" />
</div>
<pre id="currentDateTime" style="font-size:1.5em;">
</pre>
</body>
The AngularJS app module and controller are declared as follows:
(function() {
var formApp = angular.module("formApp", []);
formApp.controller("FormCtrl", function ($scope) {
$scope.formData = {};
$scope.formData.currentDateTime = new Date().toString();
(function updateCDT() {
$scope.formData.currentDateTime = new Date().toString();
document.getElementById("currentDateTime").innerHTML = $scope.formData.currentDateTime;
setTimeout(updateCDT, 1000);
})();
});
})();
Share
Improve this question
asked Apr 18, 2015 at 15:28
Web UserWeb User
7,74615 gold badges70 silver badges101 bronze badges
4 Answers
Reset to default 11you need to use $scope.$apply()
or angulars $timeout
to reflect changes since setTimeout is outside the scope of angularjs
using $scope.$apply()
apply $scope.$apply() inside anonymous function of setTimeout(function(){},1000) and then call the actual function like below
(function updateCDT() {
$scope.formData.currentDateTime = new Date().toString();
document.getElementById("currentDateTime").innerHTML
= $scope.formData.currentDateTime;
setTimeout(function(){
$scope.$apply();
updateCDT()
}, 1000);
fiddle for $scope.$apply()
using $timeout (dont forget to inject it into controller)
(function updateCDT() {
$scope.formData.currentDateTime = new Date().toString();
document.getElementById("currentDateTime").innerHTML
= $scope.formData.currentDateTime;
$timeout(updateCDT, 1000);
})();
fiddle for $timeout
Instead of using setTimeout()
you can use $timeout()
which will call $apply()
internally thereby telling angular to run a digest.
Just remember to inject $timeout
as a dependency
DEMO
If you modify the scope outside of angular like with setTimeout you need to call $scope.$apply
.
Just do the same as in the pre tag:
document.getElementById("input-field").value=$scope.formData.currentDateTime;
Hope it helps!
本文标签: javascriptAngularJS Input field not updating from setTimeout inside controllerStack Overflow
版权声明:本文标题:javascript - AngularJS Input field not updating from setTimeout inside controller - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743563272a2503305.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论