作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
在为对话框实现模式时,我得到了错误:[ng:areq] Argument 'ModalInstanceCtrl' is not a function, got undefined
。我在同一个 .js 文件中有两个 Controller 。错误显示第二个 Controller 的名称。
ng-app 包含在主 html 文件中。
<div ng-app = "LoginApp">
<div ng-view>
<!-- partial will go here -->
</div>
</div>
Angular 路线
var LoginApp = angular.module('LoginApp', ['ngResource', 'ngRoute', 'ui.bootstrap'])
LoginApp.config(function($routeProvider, $locationProvider) {
$routeProvider
.when('/', {controller: LoginCtrl, templateUrl: '/js/templates/login.html'})
.otherwise({redirectTo: '/'})
$locationProvider.html5Mode({
enabled: true,
requireBase: false
});
})
LoginCtrl.js文件
'use strict'
var LoginCtrl = ['$scope', '$modal', '$log', function($scope, $modal, $log) {
$scope.authenticate = function(){
var loginModal = $modal.open({
templateUrl: 'login-modal.html',
controller: 'ModalInstanceCtrl',
resolve: {
modalData: function () {
return {
user: {
name: '',
password: ''
}
};
}
}
});
loginModal.result.then(function (user) {
$log.info("My name is:" + user.name);
}, function () {
$log.info('Modal dismissed at: ' + new Date());
});
}
}];
var ModalInstanceCtrl = ['$scope', '$modalInstance', 'modalData', function($scope, $modalInstance, modalData){
}];
在LoginCtrl.js
文件中,LoginCtrl
没有出现这个错误,但是ModalInstanceCtrl
的声明是未定义的。谁能告诉我为什么会这样。
最佳答案
在 $modal.open()
的参数中,更改为:
...
controller: 'ModalInstanceCtrl',
...
为此:
...
controller: ModalInstanceCtrl,
...
注意, Controller 名称没有引号,因为您希望 AngularJS 使用 ModalInstanceCtrl
变量,而不是使用 angular
注册的 Controller 。
或者,如果你想保留引号,你可以用 AngularJS 注册 ModalInstanceCtrl
,像这样:
LoginApp.controller('ModalInstanceCtrl', ['$scope', '$modalInstance', 'modalData', function($scope, $modalInstance, modalData){
...
}]);
两种方式都行。
关于angularjs - 错误 : [ng:areq] Argument 'Controller' is not a function, 未定义,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26835846/
我是一名优秀的程序员,十分优秀!