私はこれを含む名前のリストを持っています:
<td><%= product.date %></td>
そしてそれは私のインデックスページにあります。(私のアプリケーションのリストです)
それにカスタムリンクを割り当て、その値をコントローラーに渡したい:これを試した:
<td><%= link_to product.date, {:controller => "product", :action => "sort_by_date", <how do I pass the 'product.date' string?> }%></td>
レールルートガイドを読みましたが、助けが見つかりませんでした
ありがとう
レーキルートが返すもの:
products GET /products(.:format) products#index
POST /products(.:format) products#create
new_product GET /products/new(.:format) products#new
edit_product GET /products/:id/edit(.:format) products#edit
product GET /products/:id(.:format) products#show
PUT /products/:id(.:format) products#update
DELETE /products/:id(.:format) products#destroy
root /
products#home.html