覆盖路由助手方法

时间:2011-03-05 12:31:27

标签: ruby-on-rails routing override

问题有很多评论。

网址“questions / 123”显示了一个问题。

网址:

  

“的问题/ 123#答案-345”

显示问题并突出显示答案。 345 - 是答案模型的id,“answer-345”是HTML元素的id属性。

我需要覆盖“answer_path(a)”方法来获取

  

“的问题/ 123#答案-345”

而不是

  

“答案/ 345”

怎么做?

2 个答案:

答案 0 :(得分:16)

所有url和path helper方法都接受可选参数 您正在寻找的是anchor参数:

question_path(123, :anchor => "answer-345")

它记录在URLHelper#link_to examples

使用此参数,您应该能够通过以下方式创建answer_path帮助程序:

module ApplicationHelper

  def answer_path(answer)
    question_path(answer.question, :anchor => "answer-#{answer.id}")
  end

end

答案 1 :(得分:0)

提供涵盖更多区域的解决方案(不仅可以在视图中工作,还可以在控制器/控制台中工作)

module CustomUrlHelper
  def answer_path(answer, options = {})
    options.merge!(anchor: "answer-#{answer.id}")
    question_path(answer.question, options)
  end
end

# Works at Rails 4.2.6, for earliers versions see http://stackoverflow.com/a/31957323/474597
Rails.application.routes.named_routes.url_helpers_module.send(:include, CustomUrlHelper)