gpt4 book ai didi

angular - ionic 4 - 如何检索传递给模态的数据

转载 作者:太空狗 更新时间:2023-10-29 19:36:22 25 4
gpt4 key购买 nike

根据 Ionic 4 文档,您可以通过 componentProps 属性传递数据。在 Ionic3 中,我可以使用 navParams 服务检索它。我如何在 Ionic 4 中执行此操作?

async presentModal() {
const modal = await this.modalController.create({
component: ModalPage,
componentProps: { value: 123 }
});
return await modal.present();
}

最佳答案

您需要使用@Input() 装饰器。

async presentModal() {
const modal = await this.modalController.create({
component: ModalPage,
componentProps: { value: 123 }
});
return await modal.present();
}

组件:

@Component({
selector: 'ModalPage',
templateUrl: './ModalPage.component.html',
styleUrls: [ './ModalPage.component.css' ]
})
export class ModalPage {
name = 'Angular';
@Input() value: any;
}

关于angular - ionic 4 - 如何检索传递给模态的数据,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52012447/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com