我很想知道这是怎么做的。假设我有一个简单的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 %>
的ProductsController
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 })) %>");
现在生成一个产品表单,但我想知道在同一页面上呈现其他产品表单背后的代码逻辑。怎么会这样做?
答案 0 :(得分:0)
通常我会使用代表产品集合的第二个对象来完成此操作。如果它适合您的业务逻辑(类似于ProductCategory或ShoppingCart)或简单的ActiveModel“Products”以及保存其相关产品的保存方法,则可以是活动记录。
Active Presenter可以为您提供有关此机制的更多详细信息,但我不会使用该gem,因为它的活动非常低。