$watch方法

Posted

tags:

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

var firstController = function ($scope){
    $scope.name=‘张三‘;
    $scope.data={
        name:‘李四‘,
        count:20
    }
    $scope.count=0;
    $scope.$watch(‘name‘,function (newValue,oldValue) {
       ++$scope.count;
       if($scope.count>30){
           $scope.name=‘已经大于30次‘;
       }
        
    });
    $scope.$watch(‘data‘,function () {


    },true)



}

  

以上是关于$watch方法的主要内容,如果未能解决你的问题,请参考以下文章

VSCode自定义代码片段—— 数组的响应式方法

VSCode自定义代码片段10—— 数组的响应式方法

如何在片段中运行此 API?

Android课程---Android Studio使用小技巧:提取方法代码片段

有没有办法在 Apple Watch 的后台每天运行一次代码?

详解Vue中watch的高级用法