Rails 3 和 Prawn 自己的行动
我有操作 my_pdfs
,并且有以下内容:
def my_pdfs
respond_to do |format|
format.pdf { render :layout => false }
end
end
在 views/mycontroller
中是文件 my_pdfs.html.erb 和 my_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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我希望这个链接 会帮助你。
使用send_data已经有了一个很好的解决方案。
I hope this link will help you.
It already have a good solution by using send_data.