我有一个带有弹出窗口的页面,我在几个页面上使用,并使用ng-include加载它。在这个弹出窗口中,有三个选项卡,也是使用ng-include动态加载的。
所以我的代码看起来像这样:
<div ng-include="'/pages/ng-templates/Cockpit.html'"></div>在Cockpit.html中,我有以下代码:
<div id="dlgCockpit" class="Cockpit jquerydialog">
<div id="tabs">
<ul>
<li><a href="#tabA">tabA</a></li>
<li><a href="#tabB">tabB</a></li>
<li><a href="#tabC">tabC</a></li>
</ul>
<div id="tabA">
<div ng-include="'/pages/ng-templates/Cockpit-A.html'"></div>
</div>
<div id="tabB">
<div ng-include="'/pages/ng-templates/Cockpit-B.html'"></div>
</div>
<div id="tabC">
<div ng-include="'/pages/ng-templates/Cockpit-C.html'"></div>
</div>
</div>
</div>
<script src="/pages/ng-templates/scripts/Cockpit.js"></script>在Cockpit-A.html中,我有以下代码:
<div id="dlgCockpitA">
<form name="frmA" class="cntrCockpitA form" ng-controller="AController">
<!-- some inputs using ng-model -->
</form>
</div>
<script src="/pages/ng-templates/scripts/Cockpit-A.js"></script>Cockpit.js
function showCockpit(vsTnID, vsBenutzer) {
$('#dlgCockpit').data('tnid', vsTnID);
var $dialog = $("#dlgCockpit")
.dialog({
autoOpen: false,
title: locBenutzer + ': ' + vsBenutzer + ' (ID: ' + vsTnID + ')',
width: 1000,
show: 'fade',
resizable: false,
open: function (event, ui) {
$("#tabs").tabs({ active: 0 });
angular.element($('.cntrCockpitA')).scope().showStammdaten(vsTnID, 'Standard');
},
close: function (event, ui) {
}
});
$dialog.dialog('open');
return false;
}Cockpit-A.js
app.controller('AController', ['$scope', '$http', function ($scope, $http) {
//some function definitions on $scope
}]);当我加载页面时,我在javascript控制台中得到以下内容:
Error: [ng:areq] Argument 'AController' is not a function, got undefined
http://errors.angularjs.org/1.2.26/ng/areq?p0=StammdatenController&p1=not%20aNaNunction%2C%20got%20undefined
at http://localhost:63323/scripts/angular/angular-1.2.26.js:78:12
at assertArg (http://localhost:63323/scripts/angular/angular-1.2.26.js:1509:11)
at assertArgFn (http://localhost:63323/scripts/angular/angular-1.2.26.js:1519:3)
at http://localhost:63323/scripts/angular/angular-1.2.26.js:7278:9
at http://localhost:63323/scripts/angular/angular-1.2.26.js:6670:34
at forEach (http://localhost:63323/scripts/angular/angular-1.2.26.js:332:20)
at nodeLinkFn (http://localhost:63323/scripts/angular/angular-1.2.26.js:6657:11)
at compositeLinkFn (http://localhost:63323/scripts/angular/angular-1.2.26.js:6105:13)
at compositeLinkFn (http://localhost:63323/scripts/angular/angular-1.2.26.js:6108:13)
at publicLinkFn (http://localhost:63323/scripts/angular/angular-1.2.26.js:6001:30)在调用showCockpit时,我在angular.element($('.cntrCockpitA')).scope().showStammdaten(vsTnID, 'Standard');行中得到以下错误
Uncaught TypeError: undefined is not a function实际上,如果我将Cockpit-A.js的脚本标记放在包含Cockpit.html的“基页”中,或者如果我只是通过调用function AController($scope, $http) { ... }来创建控制器,那么一切都会正常工作,但这两者都不是一个选项。
发布于 2015-09-28 19:44:58
我也遇到了同样的问题。找到了解决方案,多亏了:http://ify.io/lazy-loading-in-angularjs/
基本上,不可能使用app.controller(...)在启动应用程序之后。我建议阅读链接以获取更多信息。解决方案是提前保存controllerProvider并使用它注册模块。
var app = angular.module('myModule', []);
app.config(function($controllerProvider) {
app.controllerProvider = $controllerProvider;
});
// Later on... after bootstrapping...
app.controllerProvider.register('myController', function() {... });https://stackoverflow.com/questions/26777381
复制相似问题