0

大家好,

我有以下内容:

routes.rb

 namespace :hr do
    resources :employees do
      resources :skills
    end
  end

还有那些模型:
hr/skills.rb

class Hr::Skill < ApplicationRecord
end  

hr/employees.rb

class Hr::Employee < ApplicationRecord

end

我正在努力#url_for解决hr_employee_skills_path(@employee, @skill)。我需要以这种方式工作,因为它在 SimpleForm#url_for内部使用。#simple_form_for

我尝试了不同的组合#url_for来为我提供所需的 url 路径生成器,但没有一个有效:

url_for [Hr::Employee.new, Hr::Skill.new]
NoMethodError: undefined method `hr_employee_hr_skills_url' for main:Object

还有这个:

url_for [:hr, Hr::Employee.new, Hr::Skill.new]
NoMethodError: undefined method `hr_hr_employee_hr_skills_url' for main:Object

我只需要#url_for打电话 hr_employee_skills_path(employee, skill),以便它解析到实际路线。这怎么可能?

4

1 回答 1

1

查看链接,但您可以使用该模块的一个选项来帮助解决此问题:

module Hr
  def self.use_relative_model_naming?
    true
  end
end

这允许这样做:

url_for([:hr, Hr::Employee.first, Hr::Skill.first, only_path: true])
 => "/hr/employees/1/skills/1"

https://coderwall.com/p/heed_q/rails-routing-and-namespaced-models

于 2016-05-02T18:28:20.747 回答