2012-05-19 91 views
0

我有这样的路线:轨道3路由路径构建问题

在浏览器http://127.0.0.1:3000/inv/user_templates/6/download/12?locale=uk,它的工作原理。

但我该如何构建资源路径?

我想:

download_user_template_path(params[:property], @id, @idcreated) 

,但我得到的消息:

No route matches {:action=>"download", :controller=>"user_templates", :locale=>:uk, :property=>"inv", :id=>76, :format=>6} 

它没有工作过:

download_user_template_path('property' => params[:property], 'id' => @tmp_id, 'idcreated' => @created_temp_row[:id])

rake routes 

        GET /:property/user_templates/:id/download/:idcreated(.:format) {:property=>/inv|um|tm|pp/, :action=>"download", :controller=>"user_templates"} 
    user_templates GET /:property/user_templates(.:format){:property=>/inv|um|tm|pp/, :action=>"index", :controller=>"user_templates"} 
        POST /:property/user_templates(.:format){:property=>/inv|um|tm|pp/, :action=>"create", :controller=>"user_templates"} 
new_user_template GET /:property/user_templates/new(.:format){:property=>/inv|um|tm|pp/, :action=>"new", :controller=>"user_templates"} 
edit_user_template GET /:property/user_templates/:id/edit(.:format){:property=>/inv|um|tm|pp/, :action=>"edit", :controller=>"user_templates"} 
    user_template GET /:property/user_templates/:id(.:format){:property=>/inv|um|tm|pp/, :action=>"show", :controller=>"user_templates"} 
        PUT /:property/user_templates/:id(.:format){:property=>/inv|um|tm|pp/, :action=>"update", :controller=>"user_templates"} 
        DELETE /:property/user_templates/:id(.:format){:property=>/inv|um|tm|pp/, :action=>"destroy", :controller=>"user_templates"} 

任何帮助PLZ?

+0

是什么'耙routes'显示有问题的路线? – x1a4

+0

我编辑了我的问题 –

回答

1

只需添加:如=>:下载,并使用耙路线CONTROLLER = ...

+0

非常感谢,它的工作原理! –