美文网首页Ionic 3技术汇总
ionic3 ion-segment动态添加数据,点击无效

ionic3 ion-segment动态添加数据,点击无效

作者: IT飞牛 | 来源:发表于2019-04-28 10:01 被阅读0次

    解决方案:

    import { ViewChild } from '@angular/core';
    import {Segment } from 'ionic-angular';
    export class FloorsPage {
       @ViewChild(Segment) segment: Segment;
    }
    

    在数据请求之后添加:

    setTimeout(() => {
        if (this.segment) {
           this.segment.ngAfterContentInit();
        }
    }, 100);
    

    参考:https://blog.csdn.net/qq_39252703/article/details/81703233

    相关文章

      网友评论

        本文标题:ionic3 ion-segment动态添加数据,点击无效

        本文链接:https://www.haomeiwen.com/subject/hhgrnqtx.html