我有 2 个模型 - 安排和联系。
在我的/views/arrangements/index.html.erb页面中,我试图显示一个联系人表。
我的安排/index.html.erb上还有一个带有此表单的模型窗口:
<%= form_for @new_to_contact, :remote => true, :id => 'new_item' do |f| %>
<%= f.label :family_name %>
<%= f.text_field :family_name %>
<%= f.label :action %>
<%= f.text_area :action, :rows => 3 %>
<%= button_tag "Save", :type => 'submit' %>
<%= button_tag "Cancel", :type => 'button', :data => {:dismiss => 'modal' } %>
<% end %>
这是我的arrangements_controller#index
方法
def index
@arrangements = Arrangement.find(:all, :order => 'location_id')
@new_to_contact = Contact.new
respond_to do |format|
format.html # index.html.erb
format.json { render json: @arrangements }
end
end
这是我的contacts_controller#create
方法
def create
@to_contact = Contact.new(params[:to_contact])
respond_to do |format|
if @to_contact.save
format.js
format.html { redirect_to @to_contact, notice: 'To contact was successfully created.' }
format.json { render json: @to_contact, status: :created, location: @to_contact }
else
format.html { render action: "new" }
format.json { render json: @to_contact.errors, status: :unprocessable_entity }
end
end
end
这是我的/views/contacts/create.js.erb
console.log('TEST');
$('#myModal').modal('hide');
我的问题是,如何从我的create.js.erb文件中重新加载我的安排索引文件中的联系人列表?
我尝试将此行添加到我的create.js.erb文件中,但这引发了模板错误:
$(".table").html("<%= escape_javascript(render(Contact.all)) %>");