Lib类中的用户帮助器函数

时间:2011-03-03 09:19:17

标签: ruby-on-rails ruby-on-rails-3

在rails 3中,是否可以在库类中使用辅助函数?例如,我有帮手:

module CarHelper
  def total_price(cars)
    #Do something here
  end
end

在我的Lib / my_library.rb

class MyLibrary
 def myFunc
   # I would like to use helper function total_price(cars) here
 end

如何在Lib类中使用辅助函数?

1 个答案:

答案 0 :(得分:0)

包括你的MyLibrary课程中的CarHelper应该完成这项工作。