Angularjs Angular.js从modal返回范围属性

Angularjs Angular.js从modal返回范围属性,angularjs,angular-ui,angular-ui-bootstrap,Angularjs,Angular Ui,Angular Ui Bootstrap,在这个Angular.js指令中,我试图将ng model=“commentBox”返回到modalInstance.result.then(function(result){}中的控制器,但我似乎没有从模式中使用resolve 指令: angular.module('main.vips').directive('deleteButton', function($modal) { var confirmModal = function(theScope) {

在这个Angular.js指令中,我试图将
ng model=“commentBox”
返回到
modalInstance.result.then(function(result){}
中的控制器,但我似乎没有从模式中使用
resolve

指令:

angular.module('main.vips').directive('deleteButton',
    function($modal) {
        var confirmModal = function(theScope) {
            return $modal.open({
                templateUrl: '../confirm_modal.html',
                scope: theScope,
                resolve: {
                    cBox: function() {
                        return theScope.commentBox;
                    }
                },
                backdrop: false
            });
        }

      return {
        templateUrl: 'vips/directives/delete_button.html',
        restrict: "AE",
        scope: {
          'iconAttribute': "@",
        },
        controller: function($scope, $element, $attrs) {
            var modalInstance;
            $scope.cancel = function(confirmModal) {
                modalInstance.dismiss();
            }
            $scope.ok = function(confirmModal) {
                modalInstance.close();
                modalInstance.result.then(function(result) {
                    console.log(result);
                }, function() {
                    console.log("dddddddddddddD");
                });
            }
            $element.on("click", function(event) {
                modalInstance = confirmModal($scope);
            });
        }
     }
});

模板:

<div class="modal-header" style="background-color: #E9E6E6">
    <h3 class="modal-title">Confirm</h3>
</div>
<div class="modal-body">
    <p>Your change will be logged. Please provide a ticket number or comment for reference</p>
    <div class="row">
        <div class="span4">
            <textarea type="text" class="form-control" ng-model="commentBox"></textarea>
        </div>
    </div>
</div>
<div class="modal-footer" style="background-color: #E9E6E6">
    <button type="button" class="btn btn-primary" ng-click="ok()" >OK</button>
    <button type="button" class="btn btn-primary" ng-click="cancel()">Cancel</button>
</div>

证实
您的更改将被记录。请提供票号或注释以供参考

好啊 取消
您可能希望这样构造代码:或者这样:

是的……需要按引用传递,而不是按值传递。