我目前正在使用docx_replace gem自动将数据插入到一组文档中。宝石非常简单。基本上它在你的rails控制器中以一种特殊的方法运行(引用文档):
def user_report
@user = User.find(params[:user_id])
respond_to do |format|
format.docx do
# Initialize DocxReplace with your template
doc = DocxReplace::Doc.new("#{Rails.root}/lib/docx_templates/my_template.docx", "#{Rails.root}/tmp")
# Replace some variables. $var$ convention is used here, but not required.
doc.replace("$first_name$", @user.first_name)
doc.replace("$last_name$", @user.last_name)
doc.replace("$user_bio$", @user.bio)
# Write the document back to a temporary file
tmp_file = Tempfile.new('word_tempate', "#{Rails.root}/tmp")
doc.commit(tmp_file.path)
# Respond to the request by sending the temp file
send_file tmp_file.path, filename: "user_#{@user.id}_report.docx", disposition: 'attachment'
end
end
end
但是,这使我的控制器变得臃肿,因此我尝试将其放入这样的服务对象中(继续上面的示例):
class UserReportService
def initialize(user)
@user=user
end
def user_report_generate
respond_to do |format|
format.docx do
# Initialize DocxReplace with your template
doc = DocxReplace::Doc.new("#{Rails.root}/lib/docx_templates/my_template.docx", "#{Rails.root}/tmp")
# Replace some variables. $var$ convention is used here, but not required.
doc.replace("$first_name$", @user.first_name)
doc.replace("$last_name$", @user.last_name)
doc.replace("$user_bio$", @user.bio)
# Write the document back to a temporary file
tmp_file = Tempfile.new('word_tempate', "#{Rails.root}/tmp")
doc.commit(tmp_file.path)
# Respond to the request by sending the temp file
send_file tmp_file.path, filename: "user_#{@user.id}_report.docx", disposition: 'attachment'
end
end
end
end
并在我的控制器中完成了以下操作:
def user_report
UserReportService.new(@user).user_report_generate
end
但是,当我调用控制器方法时,出现以下错误:
17:58:10 web.1 | NoMethodError (undefined method `respond_to' for #<UserReportService:0x000000041e5ab0>):
17:58:10 web.1 | app/services/user_report_service.rb:17:in `user_report_generate'
17:58:10 web.1 | app/controllers/user_controller.rb:77:in `user_report'
我阅读了respond_to,如果我正确理解了文档,这是控制器特有的方法(这可以解释问题)。我怎么能解决这个问题?