我正在使用Rails 4.2.4。如何在模块中定义辅助(私有)方法?我有这个模块
module WebpageHelper
def get_url(url)
content = get_content(url)
..
end
def get_content(url)
…
end
module_function :get_url
end
我不希望方法“get_content”可以公开访问,但是使用上面的代码我得到了错误
Error during processing: undefined method `get_content' for WebpageHelper:Module
如何在我的模块中正确定义私有帮助器方法?
答案 0 :(得分:0)
我认为最好的方式(以及主要是如何编写现有的lib)通过在模块中创建一个处理所有逻辑的类来实现这一点,而模块只是提供了一种方便的方法。
这里的文件;
或者查看Here了解一些不错的例子,例如class << self
选项。