我有这个简单的控制器标记
<div ng-controller="TestCtrl" ng-show="isVisible()">
<input type="text" ng-model="smth"/><br>
<span>{{smth}}</span>
</div>
和控制器本身
function TestCtrl($scope, $log)
{
$scope.smth = 'smth';
$scope.isVisible = function(){
$log.log('isVisible is running');
return true;
}
}
为什么每次更改模型后(例如更改文本框中的一个字母)我可以isVisible is running
在控制台中看到?这种情况没有问题,但我认为它会在大型应用中。我可以避免这种情况吗?