我的应用程序需要帮助。我需要在复选框中显示类别的不正确,列表为firestore。然后按类别过滤交易(如果有任何一个可以帮助您的话)
我在警报弹出窗口和标签中显示了该复选框,我想显示Firestore中的类别列表
async presentAlertCheckbox() {
const alert = await this.alertController.create({
title: 'Select Category',
inputs: [
{
name: 'checkbox1',
type: 'checkbox',
label: 'All',
value: 'all',
checked: true
}
],
buttons: [
{
text: 'Cancel',
role: 'cancel',
cssClass: 'secondary',
handler: () => {
console.log('Confirm Cancel');
}
}, {
text: 'Ok',
handler: () => {
console.log('Confirm ok');
}
}
]
});
await alert.present();
}