在编辑和创建时,我很难让友爱社的子弹在嵌巢路线上制作? 这条路线看起来很好看。
http://0.0.0.0:3000/test/tester2
这是我试图编辑测试者2 时得到的 URL :
http://0.0.0.0:3000/2/tester2/edit
我想看到的是:
http://0.0.0.0:3000/test/tester2/edit
这是我的代码。
团队.rb
class Team < ActiveRecord::Base
extend FriendlyId
friendly_id :name, use: :slugged
has_many :videos
...
end
视频.rb
class Video < ActiveRecord::Base
extend FriendlyId
friendly_id :title, use: :slugged
belongs_to :team
...
end
路线.rb
...
resources :teams, :path => , :except => [:index] do
resources :videos, :path => , :except => [:index] do
get full_res_download
get web_download
end
end
...
谢谢你的帮助