如何为控制器传递视图 ID?我的代码:
类别视图
<td><%= link_to 'Show', {:action => "show", :categoria_id => (params[:id]),:controller => "produtos", :method => "index"} %></td>
产品控制器方法:索引
def index
@produtos = Produto.find(:all, :conditions => {:categoria_id => @categoria.id})
我想获取类别的 id 并列出具有该 id 的所有产品