如何将 css 文件从数据库写入文件以供 PDFKit 使用?
要使用 PDFKit 将样式表添加到 pdf 渲染中,我使用:
kit = PDFKit.new("html goes here")
kit.stylesheets << "path/to/css"
但我在 heroku 上,我需要一种能够从 Web 界面更改样式表的方法。所以我创建一个字段将其存储在数据库中,例如,letter.css 将存储 css。
如何将该值(我假设)转换为临时文件,以便我可以使用 PDFKit 对象的样式表方法?
To add a stylesheet to a pdf rendering using PDFKit, I use:
kit = PDFKit.new("html goes here")
kit.stylesheets << "path/to/css"
But I am on heroku and I need a way to be able to change the stylesheet from the web interface. So I am creating a field to store it in the database, for example, letter.css would store the css.
How can that value be turned (I assume) into a temp file so that I can use the stylesheets method for PDFKit object?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以将 css 内容保存到 tmp 子目录中的文件中,并从那里包含它 - Heroku 允许对该目录进行写访问。
You can save the css contents into a file in the tmp subdirectory and include it from there - Heroku allows write access to that directory.