美文网首页
在h5页面使用函数,需要后绑定

在h5页面使用函数,需要后绑定

作者: 价值投机168 | 来源:发表于2020-09-21 11:33 被阅读0次

    需要先申明一个:
    doh2func: () => boolean = null;

    然后在构造的时候:
    this.doh2func = (): boolean => {
    return this.ishipv2Checked();
    };

    然后绑定到页面元素中:(即构造页面的数据中)
    const a = new WizSearchWhatItem(names[index], g, true);
    a.func = this.doh2func;
    这样,可以在h5 页面可以调用了:
    <div *ngIf="item.func?item.func() :true">
    test
    </div>

    如果不加doh2func的那一层,直接使用:
    const a = new WizSearchWhatItem(names[index], g, true);
    a.func = this.ishipv2Checked;
    不会成功的。

    相关文章

      网友评论

          本文标题:在h5页面使用函数,需要后绑定

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