标签: javascript angularjs ionic-framework ios11
答案 0 :(得分:0)
你试过$scope.$watch吗?
$scope.$watch
你可以做这样的功能
$scope.$watch("currentPlaceOfWork.value",function(nextValue,oldValue){ if(nextValue != null && nextValue != oldValue){ //call your function $scope.getChangingWorkPlace(nextValue); } });