如果我要创建$watch
如下表达式:
$scope.$watch(function(){
return(MyDataStore.someInstanceVariable);}
, function(newVal, oldVal){
$scope.scopeVariable = newVal;}
, true)
这个函数多久执行一次?它多久轮询一次数据存储?这种方法的效率如何?