与角UI模式的适用范围问题与角UI模式的适用范围问题(Scope issues with Angul

2019-05-13 02:15发布

我无法理解/使用的作用域的角度UI模式。

虽然这里不会立即显现,我拥有的这些模块,一切都设置正确(据我可以告诉),但特别是这些代码示例在哪里我发现的bug。

的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上身体DIV,但扔了一个错误:“未知提供商:$ modalInstanceProvider < - $ modalInstance”,所以没有运气。

在这一点上,我唯一的选择就是回传与对象this.namethis.groupType而不是使用$scope ,但我感觉这是错误的。

Answer 1:

我得到了我这样的工作:

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

没有形式名字,没有$parent 。 我使用AngularUI引导版本0.12.1。

我通风报信该解决方案通过此 。



Answer 2:

当嵌套作用域涉及不结合<input>小号直接向范围的成员:

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

它们绑定到至少一个更深层次:

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

其原因是,示波器prototypically继承其父范围。 因此,设置第1级的成员时,这些都直接设置在儿童范围内,在不影响父母。 与此相反,结合嵌套字段时( form.name )的构件form是从父范围阅读,所以访问name属性访问正确的目标。

阅读更详细的描述在这里 。



Answer 3:

更新2014年11月

其实你的代码应该升级到用户界面的自举0.12.0后工作。 Transcluded范围合并控制的范围所以不再需要$parentform. 东西。

0.12.0之前

该模式采用transclusion插入其内容。 由于ngForm你可以控制的范围name属性。 所以逃跑transcluded范围只需要修改的形式是这样的:

<form name="$parent">

要么

<form name="$parent.myFormData">

该模型数据将在控制范围内都有效。



Answer 4:

$scope.open = function () {

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

      };

它为我工作范围:$范围感谢ü杰森Swett



Answer 5:

我想补充范围:$范围,然后它工作.Cool



文章来源: Scope issues with Angular UI modal