我已经创建了一个助手,我想用它来进行文本操作
module ApplicationHelper
module TextHelper
extend ActionView::Helpers
end
end
字符串
但是,当我在Rails控制台中运行ApplicationHelper::TextHelper.simple_format "foo"
时,我得到
NoMethodError: undefined method `white_list_sanitizer' for Module:Class
型
还有什么我需要包括的吗?
我已经看过https://github.com/rails/rails/issues/13837了,但它没有工作。
使用Rails 4、Ruby 1.9.3
2条答案
按热度按时间gzszwxb41#
如果您在控制台中,您应该可以执行
helper.simple_format('hi')
。helper
方法可以在控制台中调用一些helper方法。使用自定义辅助对象时:
字符串
z9zf31ra2#
可以在
ActionController::Base.helpers
或Rails.application.routes.url_helpers
中使用辅助程序比如说
字符串