AngularJS 컨트롤러 함수가 호출되지 않음 나의 angularjs controller 함수는 절대 호출되지 않습니다.제 소스에 포함된 js 파일이 모두 보이는데, 컨트롤러 초기화에 전혀 영향을 주지 않습니다.이 코드에 무슨 문제가 있습니까? eventListCtrl.js: eventsApp.controller('eventListCtrl', ['$scope', function ($scope) { // this code is never called alert('controller initializing'); $scope.name = "Test"; }]); app.js: 'use strict'; var eventsApp = angular.module('eventsApp', []); Index.cshtml..