$apply脏检查

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了$apply脏检查相关的知识,希望对你有一定的参考价值。

var firstController = function ($scope){
$scope.date=new Date();
//setInterval(function () {
   // $scope.date=new Date();

//},1000)
    setInterval(function () {
      $scope.$apply(function () {
          $scope.date=new Date();

      })

    },1000)
};

 

以上是关于$apply脏检查的主要内容,如果未能解决你的问题,请参考以下文章

$apply方法(触发脏检查机制)

angularJs--$apply和$watch,$digest方法的意思

angularjs 做不到实时脏值查询

AngularJS中Error: [$rootScope:inprog]的解决办法

Operator '||' cannot be applied to operands of type 'bool?' and 'bool?'(代码片段

Operator '||' cannot be applied to operands of type 'bool?' and 'bool?'(代码片段