Angularjs 오류: [$injector:modulerr] V1.3으로 마이그레이션하는 동안
Angularjs에서 [$injector:modulerr] 오류 특히 이전 버전에서 V1.3으로 마이그레이션할 때 모듈 종속성 문제를 나타냅니다.
V1.3 이전 Angularjs 코드:
<code class="html"><body> <div ng-controller="Ctrl"> ... <script> var Ctrl = function($scope) { ... }; </script> </div> </body></code>
게시물 -V1.3 Angularjs 코드:
<code class="html"><body ng-app="app"> <div ng-controller="Ctrl"> ... </div> <script> function Ctrl($scope) { ... } angular.module('app', []) .controller('Ctrl', ['$scope', Ctrl]); </script> </body></code>
V1.3의 변경 사항:
해결책:
추가 참고 사항:
위 내용은 AngularJS를 버전 1.3으로 마이그레이션하는 동안 \'$injector:modulerr\' 오류가 발생하는 이유는 무엇입니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!