gpt4 book ai didi

javascript - ocLazyLoad 不加载 Controller ,如何解决?

转载 作者:行者123 更新时间:2023-11-30 12:11:09 25 4
gpt4 key购买 nike

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

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

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

我应该怎么做,因为我需要处理来自 Controller 的一些后端数据。假设控制台需要显示“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>

主要.js

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

测试.js

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

最佳答案

尝试使用

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

在 test.js 中

关于javascript - ocLazyLoad 不加载 Controller ,如何解决?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33760507/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com