我正致力于让PDF处理与我们的应用程序一起正常运行。基本上我们正在做的步骤是:
我们仍然坚持第3步 - 我无法使用常规的html按钮将完成的表单发回服务器。一旦它在服务器上,它就很容易操纵它。
视图看起来像这样:
#_form.html.erb
<object data=<%= select_pdf_path(blank_pdf_id: params[:blank_pdf_id], employee_id: params[:employee_id]) %> type="application/pdf" id="filled-pdf"></object>
我想我可能不得不将编辑后的文档作为文件上传提交,但是,我不确定如何获取已编辑的文件并将其上传到后端。
我发现的其他一些解决方案要求将帖子按钮放在PDF表单中。不幸的是,由于我们可以拥有数千种形式,因此这不是一个可行的选择。看起来PHP有第三方选项,但我没有看到RoR。
Fill up and update an uploaded PDF form online and save it back to the server - Ruby on Rails
Embed PDF in a website, allow user to modify editable fields in PDF, and save back to the server
Edit pdf embedded in the browser and save the pdf directly to server