値が変更された場合に残りのサービスを呼び出して更新されたカウントを取得できるように、変数に監視を設定しようとしています。
私のコードは次のようになります
function myController($scope, $http) {
$scope.abc = abcValueFromOutsideOfMyController;
$scope.getAbcCnt= function()
{
url2 = baseURL + '/count/' + $scope.abc;
$http.get(url2).success(function (data) {
$scope.abcCnt = data.trim();
});
};
$scope.$watch('abc',getAbcCnt);
}
しかし、次のエラーが発生します
ReferenceError: getAbcCnt is not defined
私は AngularJS を初めて使用します。欠落している基本的な概念があり、上記を実行できない場合はお知らせください。
この回答は役に立ちませんでした AngularJS : Basic $watch not working