0
私はselectタグを作成していて、* ngForを使用してselect_options配列からその中にオプションを設定しています。ただし、常に下部に空白のオプション項目が作成されます。それを取り除くのを助けてください。ngForを使用する場合、余分な空白の選択オプションを取り除く方法
たとえば、私は選択肢の配列を持っています: select_options = ['banana'、 'apple'、 'orange'];
<select>
<option *ngFor="let fruit of select_options"
value="fruit">
{{fruit}}
<option>
</select>
ありがとう! –