0
私はコントローラとモデル名の製品という名前のコントローラを持っています。
コレクションページにはすべての製品が表示されています。ここ
は製品Ruby on rails 2つのルートをマージする
<% @products.each do |x| %>
<div class="col-lg-3">
<div class="product-container animated fadeIn">
<div class="product-image-holder">
<%= image_tag x.image1.url(:fhd) %>
</div>
<div class="product-title-holder">
<span class="product-title"><%= x.title %></span>
</div>
</div>
</div>
<% end %>
は今、私はそれを行うために管理が、リンクがwww.localhost.comになり、それ自身のリンク(単一の製品へのリンク) で各製品をラップしたいのショーのコードです/ product/1これの代わりにwww.localhost.com/collection/product/1になりたい
助けが必要ですか? :)
これはルート
get 'collection', to:'collection#index'
resources :product
http://guides.rubyonrails.org/routing.html :) – niceman