我想根据某些参数创建一个新对象。
在我的 new.html.haml
%table
%thead
%tr
%td
= f.label: type
%td
= select_tag :question_type, options_for_select
%tbody#content
javascript:
$('#question_type').change(function(){
$.ajax({
data: { question_type: $(this).val() },
url: window.location.href,
dataType: 'script'
});
});
在我的 new.js.haml
$('#content').html("#{escape_javascript(render(:partial => "question_form"))}");
在_question_form.html.haml
= form_for @question, :url => {:action => "create"} do |f|
%tr
%td{:style => 'text-align:right;'}
= f.label :name
%td
= f.text_field :name
%tr
%td
%td
= f.button :Submit, :value => 'Create'
在我的控制器中
def new
@question = Question.new
respond_to do |format|
format.html
format.js
end
end
def create
@question.save
respond_to do |format|
format.html (redirect_to questions_path)
format.js
end
end
一切正常,但输入问题名称后我无法提交表单。如何让这个表格提交?