为什么检查像 ng-show (或其他)这样的指令中的任何表达式都是重复的?我做了简单的 jsfiddle 示例http://jsfiddle.net/fA5YX/。在浏览器控制台中查看。
<div ng-app ng-controller="ctrl" ng-show="test()">shown</div>
<script>
function ctrl($scope) {
$scope.test = function() {
console.log('check');
return true;
}
}
</script>
怎么让它停下来?我只需要一张支票。