复选框中的Ionic 3 Firestore显示列表

时间:2019-01-29 06:21:56

标签: ionic-framework ionic3 google-cloud-firestore

我的应用程序需要帮助。我需要在复选框中显示类别的不正确,列表为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();


}

0 个答案:

没有答案