2

Angular プログラミングは初めてです。ocLazyLoad の使用に関する問題が見つかりました。

まず、ocLazyLoad をアプリにインポートしました。しかし、コンソールにはこれらのエラーが発生します。

エラー: [ng:areq] 引数 'ABController' は関数ではありません。未定義です

コントローラーからのバックエンドデータを処理する必要があるため、どうすればよいですか。コンソールに「123」を表示する必要があるとします。これは私のコードです。

索引.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"); });
4

2 に答える 2

2

使ってみて

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

test.js で

于 2016-05-31T16:26:45.627 に答える
0

私が何も見落としていない場合: test.js を index.html に含めるのを忘れていました...

于 2015-11-17T15:22:35.893 に答える