gpt4 book ai didi

javascript - AngularJS : Clear $watch

转载 作者:IT老高 更新时间:2023-10-28 13:11:47 25 4
gpt4 key购买 nike

我的 AngularJS 应用程序中有一个监视功能。

$scope.$watch('quartzCrystal', function () {
...
}

但是,在某些情况下(在我的示例中,更改我的 single-page application 的页面)我想停止那个 watch (就像清除超时一样)。

我该怎么做?

最佳答案

$watch 返回一个注销函数。调用它会注销 $watcher

var listener = $scope.$watch("quartz", function () {});
// ...
listener(); // Would clear the watch

关于javascript - AngularJS : Clear $watch,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14957614/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com