我正在使用 Rails 3.2.8,并且每个级别都有一组名称/答案对,用户可以在其中更新:
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 实例的集合。