根据
耙路线
我有这样的路线
types_model GET /types/model(.:format) types#model
我有这样的方法:
def model
@models = Model.find(:all, :conditions => { :MOD_MFA_ID => params[:model]})
end
而这样的观点:
- @manufacturers.each do |manufacturer|
%li
= link_to manufacturer.MFA_BRAND, :controller => "types", :method => "model", :model => "111"
但是如何使用链接将参数发送到方法“模型”?例如: localhost/types/model/111 ?那么rails服务器工作正常吗?(现在它让我知道我没有这样的路线)