我在我的应用程序中使用Paperclip gem来处理文档(pdf,doc)。我需要通过邮寄请求将文档传递给其他第三方应用程序。
我尝试通过Base64转换回形针附件,但它会抛出错误: 没有将Tempfile隐式转换为String
我是这样做的:
# get url from the paperclip file
url = document.doc.url # https://s3-ap-southeast-1.amazonaws.com/xx-eng/documents/xx/000/000/xx/original/doc.pdf
file_data = open(url)
# Encode the bytes to base64 - this line throw error
base_64_file = Base64.encode64(file_data)
您是否有任何建议如何避免Tempfile错误?
答案 0 :(得分:5)
您需要先read
档案。
base_64_file = Base64.encode64(file_data.read)
以下是工作示例:
$ bundle exec rails c
=> file = open("tmp/file.pdf")
#> #<File:tmp/receipts.pdf>
=> base_64 = Base64.encode64(file)
#> TypeError: no implicit conversion of File into String
=> base_64 = Base64.encode64(file.read)
#> "JVBERi0xLjQKMSAwIG9iago8PAovVGl0b/BBQEPgQ ......J0ZgozMDM0OQolJUVPRgo=\n"
答案 1 :(得分:0)
@3елёный的答案对我不起作用-可能是因为它是S3文件。
但是我设法通过回形针方法找到了一种方法:
file_data = Paperclip.io_adapters.for(url).read
base_64_file = Base64.encode64(file_data)