How to define own routing helpers in rails 3?

2020-07-13 07:53发布

I use polimorphic_path and it some buggy. This method require some route helper that not defined. How i can define (like regular method) own route helper wich will be used like "model_name_path, model_name_url etc"?

2条回答
劫难
2楼-- · 2020-07-13 08:01

This solution worked for me.

Add this code to the end of config/routes.rb file. Make sure to replace MyApp with your application's name.

MyApp::Application.routes.named_routes.module.module_eval do
  def model_name_path(*args)
    # Your code here
  end

  def model_name_url(*args)
    # Your code here
  end
end

MyApp::Application.routes.named_routes.instance_eval do
  @helpers += [:model_name_path, :model_name_url]
end

These custom methods will be available in controllers, views and tests.

查看更多
Rolldiameter
3楼-- · 2020-07-13 08:03

I know one possible answer for _path, but the same isn't working for me for _url. Anybody know why?

# at the bottom of config/routes.rb
module ActionView::Helpers::UrlHelper
    def model_name_path model, args={}
        # your implementation
    end
end
查看更多
登录 后发表回答