admin管理员组文章数量:1340938
New to AngularJSs. Wondering why setTimeout
is not working. Is it true that it doe snot work with AngularJS?
jsfiddle
<div ng-controller="MyCtrl">
<select ng-model='form' ng-options='option.value as option.name for option in typeOptions'></select>
</div>
<script>
var myApp = angular.module('myApp',[]);
function MyCtrl($scope) {
//$scope.typeOptions = [];
alert("hi23");
$timeout(function() {
alert("hi");
$scope.typeOptions =
[
{ name: 'Feature', value: 'feature' },
{ name: 'Bug', value: 'bug' },
{ name: 'Enhancement', value: 'enhancement' }
];
$scope.form = $scope.typeOptions[1].value;
}, 3000);
}
</script>
Thanks.
New to AngularJSs. Wondering why setTimeout
is not working. Is it true that it doe snot work with AngularJS?
jsfiddle
<div ng-controller="MyCtrl">
<select ng-model='form' ng-options='option.value as option.name for option in typeOptions'></select>
</div>
<script>
var myApp = angular.module('myApp',[]);
function MyCtrl($scope) {
//$scope.typeOptions = [];
alert("hi23");
$timeout(function() {
alert("hi");
$scope.typeOptions =
[
{ name: 'Feature', value: 'feature' },
{ name: 'Bug', value: 'bug' },
{ name: 'Enhancement', value: 'enhancement' }
];
$scope.form = $scope.typeOptions[1].value;
}, 3000);
}
</script>
Thanks.
Share Improve this question edited May 26, 2015 at 23:52 scniro 17k8 gold badges66 silver badges107 bronze badges asked May 26, 2015 at 23:02 packetiepacketie 5,07912 gold badges41 silver badges79 bronze badges2 Answers
Reset to default 8you need to inject $timeout
. Observe the following change
function MyCtrl($scope, $timeout) {
....
}
See the $timeout
docs for more information
Furthermore, this style of declaring controllers is not remended. I would encourage re-fractoring to the following...
myApp.controller('MyCtrl', ['$scope', '$timeout', function($scope, $timeout) {
....
}]);
Angular has a list of watchers, which is all the variables and objects that bind the view with its model. Angular keeps listening for events that change any of these and starts a digest cycle to update the DOM with the new values.
When you use setTimeout, it runs asynchronously and all the code inside setTimeout is not watched by Angular, even though it might be changing one of the Angular scope values.
So you can either use $timeout as suggested above or you can wrap your setTimeout code within $scope.$apply, which tells Angular to watch for it also.
This is also a good practice for any external Jquery libraries you may be using within your Angular app. Although remended way is to use Angular wrappers for such libraries.
本文标签: javascriptsetTimeout() not working in angularjsStack Overflow
版权声明:本文标题:javascript - setTimeout() not working in angularjs? - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743658416a2517531.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论