gpt4 book ai didi

javascript - ionic 模态的 Angular 传递输入

转载 作者:行者123 更新时间:2023-12-02 22:36:35 25 4
gpt4 key购买 nike

我有一个接受输入参数的组件:

export class MapComponent implements OnInit {
@Input() options: MapOptions<any>;
}

使用 ionic ModalController 打开此模式的页面:

async pickLocationModal() {
const modal = await this.modalController.create({
component: MapComponent
});
return await modal.present();
}

此外,我在页面中存储了我想传递的mapOptions。

我可以将我的mapOptions传递给Modal,以便组件将其作为输入吗?

最佳答案

我假设您使用的是 Ionic,因为这与 ionic 的 ModalController 实现相同。

根据他们的docs ,可以通过传递给 componentProps 来实现:

async pickLocationModal() {
const modal = await this.modalController.create({
component: MapComponent,
componentProps: { // <----------
options: ...
}
});
return await modal.present();
}

关于javascript - ionic 模态的 Angular 传递输入,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58721707/

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