ruby-on-rails – 在lib文件夹模块中使用url_for

我有一个名为“type”的字段和一个称为“value”的字段的模型.类型字段将决定如何在渲染之前解析“值”.我希望这可以容易地扩展,所以我在我的lib文件夹中放置了各种“格式化程序”类.

我的一个“格式化程序”调用url_for:

class CustomTypeFormatter 
  include ActionView::Helpers::TextHelper
  include ActionView::Helpers

  def show
    raw sanitize( auto_link( value ) )
  end

  def get_url(page)
    url_for( :controller => :my_controller,:action => :show,:path => page.path )
  end

end

问题是,url_for正在提高此错误

undefined local variable or method `_routes'

我想我只是错过了一个包括.有人有什么想法应该是什么?

**更新***

这是堆栈跟踪的一部分:

actionpack (3.0.7) lib/action_dispatch/routing/url_for.rb:131:in `url_for'
actionpack (3.0.7) lib/action_view/helpers/url_helper.rb:99:in `url_for'

所以我认为它必须是一些ActiveDispatch依赖,虽然我无法弄清楚

解决方法

胜利!
include ActionView::Helpers
include ActionDispatch::Routing
include Rails.application.routes.url_helpers

通过http://apidock.com/rails/ActionController/UrlWriter

相关文章

以下代码导致我的问题: class Foo def initialize(n=0) @n = n end attr_accessor :n d...
这是我的spec文件,当为上下文添加测试“而不是可单独更新用户余额”时,我得到以下错误. require 's...
我有一个拦截器:DevelopmentMailInterceptor和一个启动拦截器的inititializer setup_mail.rb. 但我想将...
例如,如果我有YAML文件 en: questions: new: 'New Question' other: recent: ...
我听说在RSpec中避免它,let,let !,指定,之前和主题是最佳做法. 关于让,让!之前,如果不使用这些,我该如...
我在Rails中使用MongoDB和mongo_mapper gem,项目足够大.有什么办法可以将数据从Mongoid迁移到 Postgres...