在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类中使用辅助函数?
答案 0 :(得分:0)
包括你的MyLibrary课程中的CarHelper应该完成这项工作。