AngularJS ng-include는 $ scope로 전달되지 않으면 뷰를 포함하지 않습니다. ngInclude원시 경로를 취할 수 있다고 가정하는 것이 잘못 입니까? ngInclude다음과 같이 계속 설정하려고 합니다. 이것은 작동하지 않지만 이와 같은 작업을 수행하면 작동합니다. // HeaderController app.controller('HeaderCtrl', function($scope){ $scope.templates = {[ template: { url: 'views/header.html' } ]}; $scope.template = $scope.templates[0].template; }); 내 index.html에서 ngInclude범위를 벗어난 값만 제외 합니까 ? 그렇다면 왜 이런 ..