$Angular 지침의 데이터 변경에 대한 감시 A를 트리거하려면 어떻게 해야 합니까?$watch내부 데이터(예: 데이터 삽입 또는 제거)를 조작할 때 Angular 명령어로 변수를 지정하지만 해당 변수에 새 개체를 할당하지 않는 경우 현재 JSON 파일에서 로드 중인 단순 데이터 세트가 있습니다.My Angular 컨트롤러는 이를 수행할 뿐만 아니라 몇 가지 기능을 정의합니다. App.controller('AppCtrl', function AppCtrl($scope, JsonService) { // load the initial data model if (!$scope.data) { JsonService.getData(function(data) { $scope.data = data; $scope.rec..