gpt4 book ai didi

javascript - 获取范围属性的旧值

转载 作者:行者123 更新时间:2023-11-30 09:59:54 24 4
gpt4 key购买 nike

是否有可能以某种方式获得 scope 属性的旧值?我有这样的代码,里面有注释:

$scope.$watch(function() {
// here I need to get old value of some scope property, for example $scope.userInfo;
}, function() {
$scope.callSomeFunction();
}, true);

最佳答案

是的,它在第二个函数中 - 所以要观看 userInfo

$scope.$watch(function() {
return $scope.userInfo;
}, function(newValue, oldValue) {
console.log(oldValue);
$scope.callSomeFunction();
}, true);

关于javascript - 获取范围属性的旧值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32206872/

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