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"); });