I have used an action to display all topics of a course, when that course is selected. 现在我想使用虚拟属性number_question
在表单上显示一个字段,每个主题使用可以输入一个数字。我的模型:
class GeneralExam < ActiveRecord::Base
attr_accessible :course_id, :description
attr_accessor :numbe_question
end
这是我的表格:
<%= simple_form_for @general_exam, defaults: { error: false } do |f| %>
<fieldset>
<legend>General Exam information</legend>
<%= render 'shared/error_messages', object: f.object %>
<%= f.association :course, collection: current_user.courses, prompt: "Choose Course for exam" %>
<%= f.input :name %>
<%= f.input :description, input_html: { rows: 2, class: 'span6' } %>
</fieldset>
<fieldset>
<legend>Choose number question for topics</legend>
<div id="list_topics">
</div>
</fieldset>
<%= f.submit class: "new_resource" %>
<% end %>
这是我的行动:
def update_topics
@course = Course.find(params[:course_id])
@topics = @course.topics
end
我的update_topics.js.erb
$('#list_topics').html("<%= j (render('general_exams/list_topics')) %>")
我的_list_topics.html.erb
部分:
<% @topics.each do |topic| %>
<h5><%= topic.name %></h3>
<%# f.input :number_question, input_html: { name: "number_question[#{topic.id}]" } %>
<% end %>
但是如果我想显示输入字段,我必须有一个f
对象,但是当我渲染时_list_topics
,我没有。所以我想问一下如何将f
形式对象传递给部分_list_topics
?
或者有人可以告诉我如何使用 jqueryh5
在表单上的元素后添加输入字段,非常感谢。