当父作用域为true或isolated时,无法在子指令中访问父指令的作用域属性

问题描述 投票:0回答:2

我正在构建一个自定义登录模块指令,其中包含 parent 标签外壳 child 标签,例如 用户名和密码 。我在父范围中定义了用户名和密码并使用控制器功能进行通信。

    angular.module('sampleModule', [])
        .directive("parent",function(){return {
            restrict : 'E',
            transclude: true,
            scope: false,
            controller: function($scope, $element, $attrs){
                $scope.username = 'Init value';
                $scope.setUsername = function(name){
                    $scope.username = name;
                };
                $scope.getUsername = function(){
                    return $scope.username;
                }
            },
            link: function(scope, element, attrs){
                element.find('button').on('click', function(event){
                   alert('In Parent: '+ scope.username);
                });
            },
            template: '<div id="loginForm"><label>Parent: {{username}}</label><button>Check</button><br><br><ng-transclude></ng-transclude></div>'
        }})
        .directive("child",function(){return {
            restrict : 'E',
            require: '^parent',
            scope: true, //parent scope is available only when its true or false
            link: function(scope, element, attrs, parentCtrl){
                scope.$watch('username', function(newVal, oldVal){
                    if(newVal!=oldVal){
                        scope.setUsername(scope.username);
                    }
                });
            },
            template: '<input id="username" type="text" ng-model="username"><label>In Child: {{username}}</label>'
        }});

这是我第一次使用指令,我有以下疑问:

  1. 子指令可以继承父指令的隔离范围吗?

  2. 我希望封装模块数据(即应用程序其他地方不可用的用户名和密码信息)。因此,我正在考虑使包含用户名字段的父指令范围被隔离。但是,当我创建此父作用域属性时,子作用域中无法访问属性。我该如何解决这个问题?

  3. 如果我将父指令范围设置为false,其属性是否可以由容纳它的控制器函数访问? 例如:用户名SomeController中可用吗?

    <div ng-controller="SomeController">
        <parent>
            <child></child>
        </parent>
    </div>
    
angularjs angularjs-directive angularjs-scope angularjs-module
2个回答
0
投票

将 getUsername 函数附加到

this
而不是范围:

this.getUsername = functon(){....

然后在您的子指令中您可以通过以下方式访问它:

parentCtrl.getUsername();

要从父范围访问子范围,您可以执行以下操作:

var child = element.find('child');
var childScope = childElem.isolateScope();
console.log(childScope.username);

0
投票

在 AngularJS 中,子指令不会自动继承父指令的隔离范围。当指令使用隔离作用域时(使用

scope: { ... }),
,它会创建一个与其父作用域隔离的新作用域,这意味着其中的子指令不会自动访问父作用域的隔离作用域属性。

例如,如果父指令的隔离范围有一个属性parentProp,您可以通过将其作为属性传递来将其绑定到子指令

// Parent directive
app.directive('parentDirective', function() {
  return {
    scope: {
      parentModel: '=' // Isolated scope property
    },
    template: '<div><child-directive child-prop="parentModel"></child-directive></div>'
  };
});

// Child directive
app.directive('childDirective', function() {
  return {
    scope: {
      parentModel: '=' // Binds to parentModel of parent directive
    },
    template: '<div>{{ parentModel.username }}</div>'
  };
});

据我所知,您可以将父范围模型值访问到子范围中。

© www.soinside.com 2019 - 2024. All rights reserved.