我有一个要由用户填写的模板。我的目标是使用wicked_pdf将模板转换为pdf(包含用户提供的信息)。
此外,没有用户输入正在访问模型/数据库。我只需要将模板转换为包含用户数据的pdf文件即可。
到目前为止,我可以将模板转换为pdf,保存并重定向回我的索引视图。但是,用户填写的所有字段均不保存;包含用户键入的输入或值的所有字段均为空白。它只是保存一个空白模板。如何使用wicked_pdf将pdf和用户提供的数据转换为pdf?
# controller save method --->
def save_grade_sheet
@result = Result.find(params[:id])
if current_user.admin?
filename = "#{@result.user.last_name}_grades.pdf"
save_path = "#{Rails.root}/public/uploads/#{@result.user.last_name}/#{filename}"
respond_to do |format|
pdf = render_to_string pdf: filename,
template: "/results/grade_sheet.html.erb",
encoding: "UTF-8",
disposition: "attachment",
save_to_file: save_path,
save_only: true
File.open(save_path, "wb") do |file|
file << pdf
end
flash[:notice] = "#{filename} successfully saved"
format.html { redirect_to results_path }
end
else
head :unauthorized
end
end
# sample template code
<div>
<div>
<h2>PERSONNEL INFORMATION</h2>
<p>Examinee's Name: <%= @result.user.first_name %> <%= @result.user.last_name %></p>
<p>Examiner's Name: <input class="inline" type="text"></p>
</div>
<div>
<p>Exam Type: <%= @result.test.upcase %></p>
<p>Exam Version: <input class="inline" type="text"></p>
<p>Exam Date: <%= @result.created_at.strftime("%m-%d-%y") %></p>
</div>
<%= button_to "Create Grade Sheet", save_grade_sheet_result_path(@result), data: { method: :post }, class: "btn btn-primary btn-lg"%>
</div>
答案 0 :(得分:0)
我正在将所有内容发送到正确的路由,但是实际上没有任何数据被传递。相反,我需要将所有内容包装在一个form_tag中并使用一个commit_tag。
<%= form_tag(save_grade_sheet_result_path(@result), method: :post) %>
<div>
<h2>PERSONNEL INFORMATION</h2>
<p>Examiner's Name: <%= text_field_tag :examiner_name, @examiner_name, class: "inline" %></p>
<p>Exam Version:<%= text_field_tag :exam_version, @exam_version, class: "inline" %></p>
</div>
<%= submit_tag "Create Grade Sheet", class: "btn btn-primary btn-lg" %>
<% end %>
在我的控制器中,我需要获取传入的参数:
def save_grade_sheet
@result = Result.find(params[:id])
@examiner_name = params[:examiner_name]
@exam_version = params[:exam_version]
if current_user.admin?
# existing code
end
end