ionic4 ion-popover 怎么获取子组件 EventEmitter 返回的数据

发布于 2022-09-11 21:51:38 字数 672 浏览 20 评论 0

子级

    @Output() checkValue: EventEmitter<any> = new EventEmitter();
    
    // 子级 有个单选 将这个 checkValue 返回到父级
    radioChange (data: any) {
        this.checkValue.emit(data.detail.value)
    }

父级

    async presentPopover(ev: any) {
        const popover = await this.popoverController.create({
            component: UserListComponent,
            // UserListComponent 是我的子组件
            // 这里怎么接收 checkValue
            componentProps: {
                userId: this._id
            },
            event: ev,
            translucent: true
        });
        return await popover.present();
    }

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

沧笙踏歌 2022-09-18 21:51:38

子级

@Input() checkValue: any;

selectChange(val: any) {
    this.checkValue(val)
}

父级

async presentPopover(ev: any) {
    const popover = await this.popoverController.create({
        component: UserListComponent,
        // UserListComponent 是我的子组件
        // 这里怎么接收 checkValue
        componentProps: {
            checkValue: (event) => {
                console.log(event)
            }
        },
        event: ev,
        translucent: true
    });
    return await popover.present();
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文