<legend id='W36Nx'><style id='W36Nx'><dir id='W36Nx'><q id='W36Nx'></q></dir></style></legend>
    <bdo id='W36Nx'></bdo><ul id='W36Nx'></ul>

      <tfoot id='W36Nx'></tfoot>

        <i id='W36Nx'><tr id='W36Nx'><dt id='W36Nx'><q id='W36Nx'><span id='W36Nx'><b id='W36Nx'><form id='W36Nx'><ins id='W36Nx'></ins><ul id='W36Nx'></ul><sub id='W36Nx'></sub></form><legend id='W36Nx'></legend><bdo id='W36Nx'><pre id='W36Nx'><center id='W36Nx'></center></pre></bdo></b><th id='W36Nx'></th></span></q></dt></tr></i><div id='W36Nx'><tfoot id='W36Nx'></tfoot><dl id='W36Nx'><fieldset id='W36Nx'></fieldset></dl></div>

        <small id='W36Nx'></small><noframes id='W36Nx'>

        将 ViewChild 用于动态元素 - Angular 2 &amp;离子2

        时间:2023-09-09
            • <bdo id='YMUJe'></bdo><ul id='YMUJe'></ul>

            • <tfoot id='YMUJe'></tfoot>
                <i id='YMUJe'><tr id='YMUJe'><dt id='YMUJe'><q id='YMUJe'><span id='YMUJe'><b id='YMUJe'><form id='YMUJe'><ins id='YMUJe'></ins><ul id='YMUJe'></ul><sub id='YMUJe'></sub></form><legend id='YMUJe'></legend><bdo id='YMUJe'><pre id='YMUJe'><center id='YMUJe'></center></pre></bdo></b><th id='YMUJe'></th></span></q></dt></tr></i><div id='YMUJe'><tfoot id='YMUJe'></tfoot><dl id='YMUJe'><fieldset id='YMUJe'></fieldset></dl></div>
                <legend id='YMUJe'><style id='YMUJe'><dir id='YMUJe'><q id='YMUJe'></q></dir></style></legend>
                  <tbody id='YMUJe'></tbody>

                1. <small id='YMUJe'></small><noframes id='YMUJe'>

                  本文介绍了将 ViewChild 用于动态元素 - Angular 2 &amp;离子2的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

                  问题描述

                  我想使用我动态添加的多个 IonicSlides.但我不能使用 @viewChild.请提出解决此问题的方法.

                  I want to use multiple IonicSlides that I added dynamically. But I can't use @viewChild. please suggest a way to resolve this problem.

                  模板.html:

                  <div *ngFor="let name of title;let i = index;">
                      <ion-slides  id="something" #slides>
                          //some code
                      </ion-slides>
                  </div
                  

                  Component.ts:

                    @ViewChild('slides') slides: QueryList<Slides>;
                  
                    ....
                  
                    ngAfterViewInit(){
                          setTimeout(()=>{
                                alert(this.slides.toArray()); //this line rise error 
                          }, 3000);
                    }
                  

                  错误:

                  _this.slides.toArray 不是函数

                  _this.slides.toArray is not a function

                  推荐答案

                  使用 @ViewChildren 代替 @ViewChild , 阅读更多

                  Use @ViewChildren instead of @ViewChild , Read More

                  @ViewChild:

                  您可以使用 ViewChild 来获取第一个元素或指令匹配视图 DOM 中的选择器.

                  You can use ViewChild to get the first element or the directive matching the selector from the view DOM.

                  @ViewChildren:

                  您可以使用 ViewChildren 获取元素的 QueryList 或来自视图 DOM 的指令.

                  You can use ViewChildren to get the QueryList of elements or directives from the view DOM.

                  这篇关于将 ViewChild 用于动态元素 - Angular 2 &amp;离子2的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持html5模板网!

                  上一篇:如何在 ionic2 中的 pop() 之后重新加载离子页面 下一篇:在 Ionic 2 中,如何创建使用 Ionic 组件的自定义指

                  相关文章

                  最新文章

                  1. <tfoot id='EF4Pu'></tfoot>

                    <small id='EF4Pu'></small><noframes id='EF4Pu'>

                  2. <i id='EF4Pu'><tr id='EF4Pu'><dt id='EF4Pu'><q id='EF4Pu'><span id='EF4Pu'><b id='EF4Pu'><form id='EF4Pu'><ins id='EF4Pu'></ins><ul id='EF4Pu'></ul><sub id='EF4Pu'></sub></form><legend id='EF4Pu'></legend><bdo id='EF4Pu'><pre id='EF4Pu'><center id='EF4Pu'></center></pre></bdo></b><th id='EF4Pu'></th></span></q></dt></tr></i><div id='EF4Pu'><tfoot id='EF4Pu'></tfoot><dl id='EF4Pu'><fieldset id='EF4Pu'></fieldset></dl></div>

                        <bdo id='EF4Pu'></bdo><ul id='EF4Pu'></ul>

                      <legend id='EF4Pu'><style id='EF4Pu'><dir id='EF4Pu'><q id='EF4Pu'></q></dir></style></legend>