如何在Rails模块中定义辅助方法?

时间:2016-07-21 17:12:39

标签: ruby-on-rails-4 methods module helper

我正在使用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

如何在我的模块中正确定义私有帮助器方法?

1 个答案:

答案 0 :(得分:0)

我认为最好的方式(以及主要是如何编写现有的lib)通过在模块中创建一个处理所有逻辑的类来实现这一点,而模块只是提供了一种方便的方法。

这里的文件;

Private method

或者查看Here了解一些不错的例子,例如class << self选项。