为了账号安全,请及时绑定邮箱和手机立即绑定

angularjs的$watch、$watchGroup、$watchCollection使用方式(转载)

标签:
AngularJS

如果想在controller里面随时监听一个值的变化那就用<code>$watch</code>

<p>  
<label><strong>$watch:</strong></label><input type="text" ng-model="name" /></p>
$scope.$watch("name",function(newVal,oldVal){    
        console.log("new:"+newVal,"old:"+oldVal)
});

以上代码实现监听<code>name</code>属性值的变化,但是有个缺点假如要监听很多个属性值,就要写很多个<code>$watch</code>为了解决上面的问题,可以使用<code>$watchGroup</code>,这个监听器是把多个属性使用数组的形式作为第一个参数传入

<p style="margin-top: 20px">  
<label><strong>$watchGroup:</strong></label><input type="text" ng-model="one" /></p><p>    
<label><strong>$watchGroup:</strong></label>    <input type="text" ng-model="two"/></p>
$scope.$watchGroup(["one","two"], function (newVal,oldVal) {
        console.log("new:"+newVal,"old:"+oldVal);    
        //注意:newVal与oldVal都返回的是一个数组});

<code>$watchCollection</code>是为一堆数据进行监听

<p style="margin-top: 20px"><strong>$watchCollection:</strong></p><ul><li ng-repeat="d in lang">{{d}}</li></ul>
$scope.lang = ['C/C++', 'Java', 'C#', 'Python'];
$scope.$watchCollection('lang', function (newVal, oldVal) {    
        console.log("new:"+newVal,"old:"+oldVal)
});

现在可以做个测试,使用<code>$timeout</code>二秒后发生变化

$timeout(function(){
        $scope.lang = ['JavaScript', 'Html5', 'Css3', 'Angularjs'];
},2000);

点击查看完整代码



作者:MakingChoice
链接:https://www.jianshu.com/p/d8a7c15da038


点击查看更多内容
TA 点赞

若觉得本文不错,就分享一下吧!

评论

作者其他优质文章

正在加载中
  • 推荐
  • 评论
  • 收藏
  • 共同学习,写下你的评论
感谢您的支持,我会继续努力的~
扫码打赏,你说多少就多少
赞赏金额会直接到老师账户
支付方式
打开微信扫一扫,即可进行扫码打赏哦
今天注册有机会得

100积分直接送

付费专栏免费学

大额优惠券免费领

立即参与 放弃机会
意见反馈 帮助中心 APP下载
官方微信

举报

0/150
提交
取消