창 innerWidth의 AngularJS 이벤트 크기 변경 창문 안쪽 폭의 변화를 관찰할 수 있는 방법을 찾고 있습니다.다음을 시도했지만 작동하지 않았습니다. $scope.$watch('window.innerWidth', function() { console.log(window.innerWidth); }); 좋은 의견이라도 있나?jQuery를 사용하여 수행할 수 있습니다. $(window).resize(function(){ alert(window.innerWidth); $scope.$apply(function(){ //do something to update current scope based on the new innerWidth and let angular update the view. }); })..