我想通過控制器一段時間延遲後更改綁定的數據值,但沒有工作,下面是一個非常簡單的代碼:AngularJS更改綁定的數據值的延遲時間後
<html>
<head>
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.3.0/angular.min.js"></script>
<script>
var app=angular.module('app',[]);
app.controller('controller',['$scope',function($scope){
$scope.color='red';
setTimeout(function(){
$scope.color='blue';
}, 0);
}])
</script>
</head>
<body ng-app="app">
<div ng-controller="controller">
{{color}} <input ng-model="color">
</div>
</body>
</html>
很好,我剛剛閱讀了關於文摘週期的一些教程,現在我明白了。謝謝。 –
@FanheKong歡迎您接受,如果它幫助你,謝謝 –