0

私はそのようなルートを持っています:

scope ':property', :constraints => { :property => /inv|um|tm|pp/ } do
      resources :user_templates do
        member do
          get 'download/:idcreated', :action => 'download'
        end
      end
end

ブラウザ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はありますか?

4

1 に答える 1

1

:as =>:downloadを追加し、レーキルートCONTROLLER=..を使用するだけです。

于 2012-05-19T21:47:13.670 に答える