原创作者: hideto
阅读:1688次
评论:0条
更新时间:2011-05-26
Rails 2.0 里视图应该怎样写?
views/products/index.html.erb:
views/products/show.html.erb:
_product.html.erb:
new.html.erb & edit.html.erb:
views/products/index.html.erb:
<%= render :partial => @products %>
views/products/show.html.erb:
<%= render :partial => @product %>
_product.html.erb:
<% div_for product do %> <h2><%= link_to h(product.name), product %></h2> ... <% end %>
new.html.erb & edit.html.erb:
<% form_for @product do |f| %> ... <% end %>
评论 共 0 条 请登录后发表评论