如何在 Pony 和 Sinatra 中附加文件作为选项?
我在 Pony 和 Sinatra 中将文件作为选项附加时遇到问题,如何在 Pony 中指定附件选项?
I have problem in attaching a file as an option in Pony and Sinatra, how can I specify attachment options in Pony?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您只需传递文件名的哈希值 =>内容:
现在
country_report_data
应该是一个String
,可能是二进制的。如果您写入临时文件,您可以执行以下操作:You just pass a hash of filenames => contents:
Now
country_report_data
should be aString
, possibly with binary. If you wrote to a tempfile, you could do: