如何将 css 文件从数据库写入文件以供 PDFKit 使用?

发布于 2024-10-17 19:15:06 字数 276 浏览 2 评论 0原文

要使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

初相遇 2024-10-24 19:15:06

您可以将 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文