我正在使用来自https://github.com/karnov/htmltoword的htmltoword gem,我只是按照其中的步骤进行操作。但是我在运行控制器时遇到错误
错误
HtmltopdfcController中的ActionController :: UnknownFormat#show
我的控制器代码是
class HtmltopdfcController < ApplicationController
def show
respond_to do |format|
format.docx do
file = Htmltoword::Document.create params[:docx_html_source], "file_name.docx"
send_file file.path, :disposition => "attachment"
end
end
end
end
帮帮我。