我很想知道这是怎么做到的。假设我有一个简单的Product
模型,并且想在一个页面上单击一个链接并通过 AJAX 添加一个产品表单。我比弹出其他产品表单,完成第一个并提交它并对其他产品做同样的事情。
这是我将使用的代码。
在索引页面上,您可以通过链接添加产品表单,创建它并在列表中查看它。
产品/index.html.erb
<h1>Products</h1>
<%= link_to "Product", new_product_path, :remote => true %>
<div id="product_form">
<%= render 'form' %>
</div>
<ul id="products">
<%= render :partial => @products.reverse %>
</ul>
产品/_form.html.erb
<%= form_for(@product, :remote => true) do |f| %>
<%= f.text_field :name %>
<%= f.text_field :price %>
<%= f.submit %>
<% end %>
产品/_product.html.erb
<%= content_tag_for(:li, product) do %>
<p><%= product.name</p>
<p><%= product.price %></p>
<% end %>
产品控制器
def index
@products = Product.all
@product = Product.new
end
def create
@product = Product.new(params[:product])
respond_to do |format|
if @product.save
format.html { redirect_to products_url }
format.js
else
format.html { render action: "index" }
format.js
end
end
end
当它被创建时,它应该在_product
部分中显示产品。
产品/create.js.erb
$('#products').prepend('<%= escape_javascript(render(@product)) %>');
单击该链接将使产品表单出现在<div id="product_form">
产品/new.js.erb
$("#product-form").html("<%= escape_javascript(render(:partial => 'products/form', locals: { product: @product })) %>");
现在这会生成一个产品表单,但我想知道在同一页面上呈现其他产品表单背后的代码逻辑。这将如何完成?