我正在从我的控制器调用模态弹出窗口。它第一次工作正常,但第二次没有显示。 这是节目的代码
$scope.showAdvanced = function (ev) {
var scopeVar = $scope;
console.log('$mdDialog');
console.log($mdDialog);
$mdDialog.show({
controller: DialogController,
templateUrl: 'dialog1.tmpl.html',
parent: angular.element(document.body),
scope: $scope,
targetEvent: ev,
clickOutsideToClose: true
}).then(function (result) {
//$scope = $scope.$parent;
console.log($scope);
});
};
这是我在DialogController中的隐藏功能。
$scope.hide = function () {
console.log('hide called');
$mdDialog.hide();
console.log('hide completed');
};
隐藏正在成功执行,然后是show中定义的回调,它打印当前范围。 如果我删除范围:$ scope并输入transclude:true,那么它不会在对话框控制器中显示数据,尽管您可以多次显示和隐藏它。
答案 0 :(得分:4)
将preserveScope: true
添加到您的模态选项中。默认情况下,对话框会在关闭时删除其范围。