コントローラーに次のアクションがあります
def save
client = Pdfcrowd::Client.new("asdads", "asdads")
pdf = client.convertHtml(params[:gender])
send_data(pdf,
:filename => "untitled.pdf",
:type => "application/pdf",
:disposition => "attachment")
rescue Pdfcrowd::Error => why
render :text => why
end
ビューから Html コードを取得し、それを pdf に変換したい
私はpdfcrowd gemを使用しています
私のビューには次の行もあります。
<% params[:gender => compareGender(@task) ] %>
compareGender は svg コードを返すメソッドです
これは機能していません。誰かが別の解決策を提案できますか?