ocLazyLoad 不加载控制器,如何解决?

ocLazyLoad does not load controller, How to fix it?

我是 Angular 编程新手,我发现了一个关于使用 ocLazyLoad 的问题。

首先,我将 ocLazyLoad 导入到我的应用程序中。但是控制台出现这些错误。

Error: [ng:areq] Argument 'ABController' is not a function, got undefined

我应该怎么做,因为我需要处理来自控制器的一些后端数据。假设控制台需要显示“123”。这是我的代码。

Index.html

<script src="https://code.jquery.com/jquery-1.11.2.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.4.5/angular.js"></script>
<script src="js/main.js"></script>
<script src="../../dist/ocLazyLoad.js"></script>

<body>
    <div id="example" ng-app="LazyLoadTest" ng-controller="TestController">
        <div ng-controller="ABController"></div>
    </div>
    <script>
            app.controller("TestController", function($scope, $ocLazyLoad, $compile) {
                $ocLazyLoad.load("js/test.js").then(function() {
                    console.log('loaded!!');
                }, function(e) {
                    console.log('errr');
                })
            });
    </script>
</body>

main.js

var app = angular.module("LazyLoadTest", ["oc.lazyLoad"]);

test.js

app.controller('ABController', function($scope){ console.log("123"); });

以防万一我没有忽略任何事情: 您忘记将 test.js 添加到您的 index.html...

尝试使用

angular.module("LazyLoadTest").controller('ABController', function($scope){ console.log("123"); });

在test.js