我正在尝试使用以下方法覆盖 base_helper.rb 的辅助方法:
module Spree
module BaseHelper.class_eval do
def taxons_tree(root_taxon, current_taxon, max_level = 1)
.....
end
end
end
它不适合我。有人知道我在这里想念什么吗?
谢谢!
固定的:
我应该使用:
Spree::BaseHelper.module_eval do
def taxons_tree(root_taxon, current_taxon, max_level = 1)
...
end
end
反而。