这是routes.rb:
map.resources :assignments, :shallow => true do |assignment|
assignment.resources :problems
end
如何在代码中获取 url 来编辑问题(/assignments/xyz/problems/abc/edit)?我已经尝试了
edit_assignment_problem_path(assignment,problem)
和 edit_problem_path(problem)。
虽然第一个适用于我的本地设置,但在服务器上它说方法 edit_assignment_problem_path 未定义。有任何想法吗?