0
0

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 ion-select で Defalut valueのセット方法

Posted at

公式では value= で設定出来ると書かれていますが、何度やってもうまくいかない。

状態に応じて動的に選択肢を変化させるというion-selectを作成しましたが、初期値のセットがうまくいかず色々調ベタ結果

以下の選択肢の場合

aaa.ts
       this.ranklist = [{id: 'black' ,name: 'ブラック'}
                     , {id: 'beginner', name: 'ビギナー'}]

これは動作しない。

aaa.ts
.setValue({id: 'black' ,name: 'ブラック'});

以下で動作しました。

aaa.ts
.setValue(this.ranklist[0]);

選択肢一覧のうちの何番目という渡し方をしないとどうさしてくれないのかな?

0
0
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
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?