3
3

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

【ionic】プルダウンリストを実装する

Last updated at Posted at 2017-10-18

子育ての傍ら、ionic2で家計簿アプリを作ってます。
https://qiita.com/irohamaru/items/3df901cd7e12e3c85e9a

その中で、ionic2でプルダウンを実装したいと思ったのですが、ちょっと手間取ったのでメモしておきます。

データはFirebaseに保持されているテーブルから取得するものとします。
(テーブル:koumokuに登録された各データを取得してリスト表示する)

スクリーンショット 2017-10-18 23.40.48.png

sample.ts
export class samplePage {
  koumokuList: FirebaseListObservable<any>;

  constructor(public navCtrl: NavController, afdb: AngularFireDatabase) {

    this.koumokuList = afdb.list('koumokuList', {
      query: {
        orderByChild: 'name'
      }
    });
  }
sample.html
<ion-item>
  <ion-select [(ngModel)]="koumokuList.name" cancelText="Cancel" okText="OK">
    <ion-option *ngFor="let koumoku of koumokuList | async" [value]="koumoku.name">{{koumoku.name}}</ion-option>
  </ion-select>
</ion-item>

結果、こんな感じでプルダウン表示されます。

スクリーンショット 2017-10-18 23.42.40.png

プルダウン表示された項目を複数選択できるようにするには、ion-selectタグにmultiple="true"をつければ良いようです。

<ion-select multiple="true" [(ngModel)]="test"> 
...
</ion-select>

項目を選択して、それを登録処理に渡す方法など、何か分かったら追記します。

参考URL
https://stackoverflow.com/questions/45558343/ionic-2-angular-2-get-values-from-ion-select-in-form-to-send-http-post

3
3
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
3
3

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?