简体   繁体   English

如何在ES5中访问Component的ViewChildren和ContentChildren?

[英]How to access ViewChildren and ContentChildren of Component in ES5?

Here is an article which shows how to access ViewChildren and ContentChildren in TypeScript. 是一篇文章,显示了如何在TypeScript中访问ViewChildren和ContentChildren。 How to access the same if Angular 2 code is written in ES5? 如果用ES5编写Angular 2代码,如何访问相同内容?

You need to use ng.core.ViewChildren into the queries attribute of ng.core.Component. 您需要在ng.core.Component的querys属性中使用ng.core.ViewChildren。

Here is sample: 这是示例:

var component = ng.core
    .Component({
        selector: 'comp',
        template: '...',
        (...)
        queries: {
          someProp: new ng.core.ViewChildren(someDirective)
        }
    })
    .Class({
      (...)
    });

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM