我用Rails 3.2.8併爲每個級別一組名稱/答案對,其中一個用戶可以更新:視圖和用戶更新鍵/值的集合形式的Rails
class UserAnswer < ActiveRecord::Base
attr_accessible :name, :answer, :level_id, :user_id
end
這是這樣的疼痛產生的衆多觀點:
<li<%if @error_fields.include?('example_name') or @error_fields.include?('example_other_name')%> class="error_section"<%end%>>
<%= label_tag 'answer[example_name]', 'Example question:' %> <%= text_field_tag 'answer[example_name]', @user_answers['example_name'], placeholder: 'Enter answer', class: @error_fields.include?('example_name') ? 'error_field' : '' %>
<%= label_tag 'answer[example_other_name]', 'Other example question:' %> <%= text_field_tag 'answer[example_other_name]', @user_answers['example_other_name'], placeholder: 'Enter other answer', class: @error_fields.include?('example_other_name') ? 'error_field' : '' %>
</li>
@user_answers
顯然是從最後一次更新保存用戶的回答哈希值。上面有這麼多的重複。在Rails中處理這個問題的最好方法是什麼?我喜歡使用類似form_for
的東西,但我不認爲我能夠做到,因爲這不是一個模型對象,而是一組UserAnswer
ActiveRecord實例。
我可能希望標籤和字段在助手中,但這看起來像正確的方法 –
然後只需將標籤添加到助手。我沒有這樣做,因爲它可能會造成一些問題。 – Hauleth
它可以造成什麼問題? –