如何访问angularjs 1.5中的父组件

时间:2016-08-09 12:21:46

标签: angularjs components angular-components

您好我正在尝试在angularjs中显示简单的组件,其中child需要访问父名称。我的代码是这样的:

HTML文件:

<html>
<head>
    <script type='text/javascript' src='angular.min-1.5.0.js'></script>
    <script type='text/javascript' src='app.js'></script>
</head>
<body ng-app="componentApp">
    <div ng-controller="helloCnt"> 
        <hello name="Parent"></hello>
        <hello1 name="Child"></hello1>  
        <label>List: <input name="namesInput" ng-model="names" ng-list=" | "   required></label>
    </div>
</body>
</html>

CODE:

app.component('hello', {
        transclude: true,
        template:'<p>Hello I am {{$ctrl.name}} and ctrl name is {{myName}}</p>',
        bindings: { name: '@' },
        controller: function($scope) {
                        $scope.myName = 'Alain';
                        alert(1);
        }
});

app.component('hello1', {
        require: {
            parent: 'hello'
        },
        template:'<p>Hello I am {{$ctrl.name}} && my parent is {{myNameFromParent}} </p>',
        bindings: { name: '@' },
        controller: function($scope) {
                        $scope.myNameFromParent=this.parent.myName;
                        alert(2);
        }
});

它引发了一个错误:

TypeError: Cannot read property 'myName' of undefined

我无法弄清楚代码中出了什么问题以及为什么它找不到父母。对我犯的错误有任何意见。看起来我可能错过了一小部分。

2 个答案:

答案 0 :(得分:4)

要使用require继承,需要嵌套组件:

<hello name="Parent"></hello>
<hello1 name="Child"></hello1>

代替

<hello name="Parent">
    <hello1 name="Child"></hello1>
</hello>

然后您可以像这样要求父母:

require: {
    parent: '^^hello'
  },

答案 1 :(得分:4)

实际上我在用@gyc指出的答案进行了以下修改后得到了答案:

JS CODE:

angular
    .module('componentApp', [])
    .controller('helloCtrl', function ($scope) {
        $scope.names = ['morpheus', 'neo', 'trinity'];
    })
    .component('hello', {
        transclude: true,
        template: '<p>Hello I am {{parentCtrl.name}} and my name is {{parentCtrl.myName}}</p><ng-transclude></ng-transclude>',
        controllerAs: 'parentCtrl',
        controller: function ($scope) {
            this.myName = 'Braid';
        },
        bindings: {
            name: '@'
        }
    })
    .component('hello1', {
        template: '<p>Hello I am {{$ctrl.name}} && my parent is {{myNameFromParent}}  </p>',
        controller: function ($scope) {
            this.$onInit = function () {
                $scope.myNameFromParent = this.parent.myName;
            };

        },
        bindings: {
            name: '@'
        },
        require: {
            parent: '^hello'
        }
    });

HTML:

<html>
<body ng-app="componentApp">
    <div ng-controller="helloCtrl">
        <hello name="Parent">
            <hello1 name="Child"></hello1>
        </hello>
        <label>List:
            <input name="namesInput" ng-model="names" ng-list=" | " required>
        </label>
    </div>
</body>
</html>

我这样做的常见错误是没有遵循嵌套的组件格式,也没有在我的父级中使用transclude。当我做出这两个更改并修改后续代码时,其余的工作正常。

P.S - HTML中包含的ng-list与组件无关。这是出于其他目的。

@gyc - 感谢您的帮助。您的投入有所帮助。

@ daan.desmedt - 我希望组件中的解决方案不是指令。