0
0

More than 1 year has passed since last update.

bootstrap btnがリロードしないと表示できない>>>三項演算子

Posted at

三項演算子

枠だけ色付きのボタン、編集/editページに行くと選択していたボタンが選択されない&リロードすると選択していたボタンが表示される

検証ページ見るとcheckedになっている

edit.html.erb
 <label class="btn btn-outline-success">
   <%= f.label :pink ,'ピンク' %><%= f.radio_button :color,"pink"%>
</label>

edit.html.erb
<label class="btn btn-outline-success <%= @ostomy.color == 'pink' ? 'active' : '' %>">
   <%= f.label :pink, 'ピンク' %><%= f.radio_button :color,"pink"%>
</label>
bootstrapではフォーカスがあたったボタンには .active が適用される
                                     条件式?    '式1' : '式2'
<%= @ostomy.color == 'pink' ? 'active' : '' %>
 
#if文を1文て書いている
if  @ostomy.color == 'pink'
  'active'
else
   ''
end
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