我有两个Helpers
,ExamsHelper
和ResultsHelper
exams_helper.rb
module ExamsHelper
def get_data
...
end
end
results_helper.rb
module ResultsHelper
def find_result
...
end
end
是否可以访问get_data
中的ResultsHelper
方法。
我知道如果我在ApplicationHelper
上宣布它,我可以访问它。还有其他解决方案吗?
答案 0 :(得分:3)
您始终可以使用include
:
module ResultsHelper
include ExamsHelper
def find_result
get_data # works
end
end