0

我有 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)) %>");
4

1 回答 1

1

根据 Rails 方式,您应该将 new_contact 表单从安排/index.html.erb 提取到联系人/_form.html.erb 并在安排/index.html.erb 中呈现此部分。

然后,您可以使用以下内容轻松地从您的 js.erb 文件中呈现此模板:

$('.table tr:last').after("<%= escape_javascript(render :partial => 'form', :locals => {:contact => @to_contact}) %>")
于 2013-03-10T07:54:22.510 回答