Rails 3 和 Prawn 自己的行动

发布于 2024-12-22 11:39:33 字数 386 浏览 2 评论 0原文

我有操作 my_pdfs ,并且有以下内容:

def my_pdfs
   respond_to do |format|
      format.pdf { render :layout => false }
   end
end

views/mycontroller 中是文件 my_pdfs.html.erbmy_pdfs .pdf.虾。 如何显示生成的PDF?我尝试了类似的方法:

localhost:3000/controller/my_pdfs/my_pdfs.pdf,但这是一个坏方法......

I have the action my_pdfs and there I have followings:

def my_pdfs
   respond_to do |format|
      format.pdf { render :layout => false }
   end
end

In the views/mycontroller is the file my_pdfs.html.erb and my_pdfs.pdf.prawn.
How can I display the generated PDF? I tried something like:

localhost:3000/controller/my_pdfs/my_pdfs.pdf, but this is a bad way...

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

失而复得 2024-12-29 11:39:33

我希望这个链接 会帮助你。

使用send_data已经有了一个很好的解决方案。

class MyController < ApplicationController  

  def my_action
    doc = PdfGenerator.new(some_params)
    doc.generate

    send_data doc.render, filename: 'preview only.pdf', type: 'application/pdf'
  end

I hope this link will help you.

It already have a good solution by using send_data.

class MyController < ApplicationController  

  def my_action
    doc = PdfGenerator.new(some_params)
    doc.generate

    send_data doc.render, filename: 'preview only.pdf', type: 'application/pdf'
  end
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文