gpt4 book ai didi

javascript - 从数组获取值到模态参数

转载 作者:行者123 更新时间:2023-12-02 23:35:38 26 4
gpt4 key购买 nike

我想通过数组中的值更改模态组件参数。但我不知道该怎么做。传递数组时,取的是代码编写,而不是数组值。

componentArray: any[] = [{component: 'modal1Page'}, {component: 'modal2Page'}];

async onClick(value: any) {
const myModal = await this.modalController.create({
component: this.componentArray[0],
cssClass: 'modalCss',
componentProps: {
value: value,
}
});
return await myModal.present();
}

它的解释如下:“component: this.componentArray[0]; ”,我希望它的解释如下:“< em>组件:modal1Page;

感谢您的帮助

最佳答案

我想你刚刚错过了.component

async onClick(value: any) {
const myModal = await this.modalController.create({
component: this.componentArray[0].component,
cssClass: 'modalCss',
componentProps: {
value: value,
}
});
return await myModal.present();
}

关于javascript - 从数组获取值到模态参数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56298872/

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