作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我的路径有问题。在我的模型中,我有以下设置:
class Pdffiles < ActiveRecord::Base
belongs_to :user
has_attached_file :invoice_file,
:path => ":rails_root/public/pdffiles/:user_id/:style/:basename.:extension",
:url => "/pdffiles/:user_id/:style/:basename.:extension",
:storage => :s3,
:bucket => '...',
:s3_credentials => {
:access_key_id => '...',
:secret_access_key => '...'
}
end
pdf = Prawn::Document.new
pdf.move_down 70
pdf.text("Prawn Rocks")
pdf.render_file('prawn.pdf')
pdf_file = File.open('prawn.pdf')
pdff = Pdffile.new()
pdff.pdffile_file = pdf_file
pdff.user_id = todays_user.id
pdff.save
app/public/pdff/id_of_a_user/file_name_of_pdf_file
是文件保存到
Users/my_name/my_ruby_root_directory/name_of_my_project/public/pdffiles/id_of_a_user/file_name_of_pdf_file
.
最佳答案
您可以使用 CarrierWave ( https://github.com/jnicklas/carrierwave ) 之类的东西——它使使用 FOG 库 https://github.com/jnicklas/carrierwave 上传到 S3 变得非常容易。
关于ruby-on-rails-3 - 如何将 Prawn PDF 文件存储到 Amazon S3 中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8461599/
我是一名优秀的程序员,十分优秀!