我有一个AngularJS测试应用程序,它根据链接路径动态地使用AngularUI加载模态窗口。我的模态窗口加载,但模板控制器中没有$ scope变量被模板访问,我无法从模板触发任何$ scope函数。
这里是$ routeProvider:
.config(function($routeProvider) {
$routeProvider
.when('/page/:name', {
templateUrl : 'modalContainer',
controller : 'ModalCtrl'
})
})
以及控制器:
.controller('ModalCtrl',['$scope', '$modal', '$route', function($scope, $modal, $route) {
console.log("hello I am the ModalCtrl") //This console log runs
var modalInstance = $modal.open({
templateUrl : 'modal.html',
});
$scope.activity = $route.current.pathParams.name;
console.log($scope.activity) //This console log runs & shows the correct value,
// but the $scope variable is not visible in the template
//Modal controls
$scope.close = function () {
console.log("close!") //This does not run.
modalInstance.close();
};
}]);
我猜我在某种程度上错误地创建了模态窗口的范围,有人能看到问题吗?
答案 0 :(得分:0)
您需要为模态窗口创建一个控制器,以便它可以访问$ scope,因此代码如下所示:
var modalInstance = $modal.open({
templateUrl : 'modal.html',
controller: 'ModalCtrl'
});
var ModalCtrl = function ($scope, $modalInstance) {
//Modal controls
$scope.close = function () {
console.log("close!") //This will now run
modalInstance.close();
};
}
答案 1 :(得分:0)
开放模态时需要传递scope
,如此
var modalInstance = $modal.open({
templateUrl : 'modal.html',
scope : $scope
});
如果您未通过scope
模态窗口,请使用$rootScope.new()
您还需要从模板中删除ng-controller
属性
<script type="text/ng-template" id="modalContainer">
<div></div>
</script>