80

我无法理解/使用角度 UI 模式的范围。

虽然在这里不是很明显,但我已经正确设置了模块和所有内容(据我所知),但这些代码示例尤其是我发现错误的地方。

index.html(它的重要部分)

<div class="btn-group">
    <button class="btn dropdown-toggle btn-mini" data-toggle="dropdown">
        Actions
        <span class="caret"></span>
    </button>
    <ul class="dropdown-menu pull-right text-left">
        <li><a ng-click="addSimpleGroup()">Add Simple</a></li>
        <li><a ng-click="open()">Add Custom</a></li>
        <li class="divider"></li>
        <li><a ng-click="doBulkDelete()">Remove Selected</a></li>
    </ul>
</div>

Controller.js(同样,重要的部分)

MyApp.controller('AppListCtrl', function($scope, $modal){
    $scope.name = 'New Name';
    $scope.groupType = 'New Type';

    $scope.open = function(){
        var modalInstance = $modal.open({
            templateUrl: 'partials/create.html',
            controller: 'AppCreateCtrl'
        });
        modalInstance.result.then(function(response){

            // outputs an object {name: 'Custom Name', groupType: 'Custom Type'}
            // despite the user entering customized values
            console.log('response', response);

            // outputs "New Name", which is fine, makes sense to me.                
            console.log('name', $scope.name);

        });
    };
});

MyApp.controller('AppCreateCtrl', function($scope, $modalInstance){
    $scope.name = 'Custom Name';
    $scope.groupType = 'Custom Type';

    $scope.ok = function(){

        // outputs 'Custom Name' despite user entering "TEST 1"
        console.log('create name', $scope.name);

        // outputs 'Custom Type' despite user entering "TEST 2"
        console.log('create type', $scope.groupType);

        // outputs the $scope for AppCreateCtrl but name and groupType
        // still show as "Custom Name" and "Custom Type"
        // $scope.$id is "007"
        console.log('scope', $scope);

        // outputs what looks like the scope, but in this object the
        // values for name and groupType are "TEST 1" and "TEST 2" as expected.
        // this.$id is set to "009" so this != $scope
        console.log('this', this);

        // based on what modalInstance.result.then() is saying,
        // the values that are in this object are the original $scope ones
        // not the ones the user has just entered in the UI. no data binding?
        $modalInstance.close({
            name: $scope.name,
            groupType: $scope.groupType
        });
    };
});

create.html(完整)

<div class="modal-header">
    <button type="button" class="close" ng-click="cancel()">x</button>
    <h3 id="myModalLabel">Add Template Group</h3>
</div>
<div class="modal-body">
    <form>
        <fieldset>
            <label for="name">Group Name:</label>
            <input type="text" name="name" ng-model="name" />           
            <label for="groupType">Group Type:</label>
            <input type="text" name="groupType" ng-model="groupType" />
        </fieldset>
    </form>
</div>
<div class="modal-footer">
    <button class="btn" ng-click="cancel()">Cancel</button>
    <button class="btn btn-primary" ng-click="ok()">Add</button>
</div>

所以,我的问题是:为什么范围没有双重绑定到 UI?为什么this有自定义值,但$scope没有?

我试图ng-controller="AppCreateCtrl"在 create.html 中添加到 body div,但这引发了一个错误:“未知提供者:$modalInstanceProvider <- $modalInstance”所以那里没有运气。

在这一点上,我唯一的选择是用this.nameandthis.groupType而不是 using传回一个对象$scope,但这感觉不对。

4

5 回答 5

66

当涉及嵌套作用域时,不要将<input>s 直接绑定到作用域的成员:

<input ng-model="name" /> <!-- NO -->

将它们绑定到至少更深的级别:

<input ng-model="form.name" /> <!-- YES -->

原因是作用域原型继承了它们的父作用域。所以在设置第一级成员时,这些是直接在子范围内设置的,而不影响父级。与此相反,当绑定到嵌套字段 ( form.name) 时,该成员form是从父范围读取的,因此访问该name属性会访问正确的目标。

在此处阅读更详细的说明。

于 2013-09-20T19:52:08.950 回答
59

我让我的工作是这样的:

var modalInstance = $modal.open({
  templateUrl: 'partials/create.html',
  controller: 'AppCreateCtrl',
  scope: $scope // <-- I added this
});

没有表格名称,没有$parent。我正在使用 AngularUI Bootstrap 0.12.1 版。

我被告知这个解决方案

于 2015-05-02T14:51:08.497 回答
7

2014 年 11 月更新

实际上,您的代码在升级到 ui-bootstrap 0.12.0 后应该可以工作。嵌入范围与控制器的范围合并,因此不再需要$parentform.东西。

在 0.12.0 之前

模态使用嵌入来插入其内容。感谢您可以按属性ngForm控制范围。name因此,要逃避嵌入范围,只需以这种方式修改表单:

<form name="$parent">

或者

<form name="$parent.myFormData">

模型数据将在控制器范围内可用。

于 2014-07-10T09:33:47.863 回答
1
$scope.open = function () {

          var modalInstance = $uibModal.open({
              animation: $scope.animationsEnabled,
              templateUrl: 'myModalContent.html',
              controller: 'salespersonReportController',
              //size: size
              scope: $scope
            });

      };

它适用于我范围:$scope 谢谢你 Jason Swett

于 2016-02-02T10:00:57.197 回答
1

我添加了 scope:$scope 然后它就可以工作了 .Cool

于 2017-10-22T10:53:04.373 回答