wicked_pdf 不包含样式
我用过 <%= wicked_pdf_stylesheet_link_tag "pdf" %>
中显示以下输出
它在 html
但是创建 pdf 时它没有任何样式。如果我将文件中的所有 css 复制到页面标题,则它包括所有样式。问题是什么以及如何解决。
I used<%= wicked_pdf_stylesheet_link_tag "pdf" %>
it shows the following output in the html
<link href="/stylesheets/pdf.css?1302860585" media="screen" rel="stylesheet" type="text/css">
<link href="file:///home/likewise-open/NEXTBRIDGE/nazar.hussain/osd/development/atlantis/public/stylesheets/pdf" media="screen" rel="stylesheet" type="text/css">
But when create the pdf it do not have any style. If i copy all css from the file to the header of the page, it includes all styles. What is the issue and how to solve it.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我个人在使用这种方法时没有遇到任何问题,但我见过其他人遇到过这种情况。
我刚刚向主项目推送了一些更新,应该可以为您解决这个问题。
wicked_pdf_stylesheet_link_tag 现在会将直接传入的任何 css 文件内联到标记中。
我还更新了您创建的 Github 问题。
I personally haven't had any trouble with this method, but I've seen others that have.
I just pushed some updates to the main project that should resolve this issue for you.
wicked_pdf_stylesheet_link_tag now will inline any css files passed in directly into the markup.
I also updated the Github issue you created.