繁体   English   中英

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

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

是一篇文章,显示了如何在TypeScript中访问ViewChildren和ContentChildren。 如果用ES5编写Angular 2代码,如何访问相同内容?

您需要在ng.core.Component的querys属性中使用ng.core.ViewChildren。

这是示例:

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