【发布时间】:2014-05-06 10:40:13
【问题描述】:
我正在尝试使用以下问题在控制器之间共享操作:
module Backend
module Exportable
extend ActiveSupport::Concern
def show
respond_to do |format|
format.xls { set_excel_headers "#{controller_name.classify}_#{params[:id]}_#{Time.now.to_i.to_s}.xls" }
end
end
end
end
你觉得这有什么问题吗?
我不应该通过关注点共享 Rails 的默认操作吗?
【问题讨论】:
标签: ruby-on-rails ruby-on-rails-4 controller activesupport-concern