if @challenge.name == 'foo'
@challenge.category = 'habit'
@challenge.days_challenged = 21
@challenge.why = 'bar'
else
:days_challenged
& :why
のためにデフォルトにない属性を適切foo
なく:category
ため_formに設定されています。デフォルトのオブジェクトは、HTML
<div class="challenge-category">
<input class="date-format-switcher" type="radio" value="goal" name="challenge[category]" id="challenge_category_goal">
<label for="challenge_category_goal">Goal</label>
<input class="date-format-switcher" type="radio" value="habit" name="challenge[category]" id="challenge_category_habit">
<label for="challenge_category_habit">Habit</label>
</div>
<%= f.number_field :days_challenged, class: 'day-challenge' %>
<%= f.text_area :why %>
をしてください、あなたのコントローラの方法を示し、それは常に「習慣」をデフォルトとなり、完全なコード – Ilya