使用rails-latex渲染没有相应html视图的pdf

发布于 2024-11-15 08:32:02 字数 364 浏览 2 评论 0原文

我试图在 Rails 3 中找到 rtex 的替代品,并找到了rails-latex。 在 git 存储库中的示例应用程序中,index.html.erb 中的以下链接使用 index.pdf.erb 中的 Latex 代码呈现 pdf 文件:

<%= link_to "print", Latex_example_path(:format => :pdf ) %>

如果没有article_list.html.erb,是否也可以从article_list.pdf.erb生成pdf文件? 我是否需要更改路线来解决该问题?目前我只有以下路线: 匹配 ':controller(/:action(/:id(.:format)))'

感谢您的帮助!

I'm trying to find a replacement for rtex in rails 3 and found rails-latex.
In the example application in the git repository the following link in index.html.erb renders a pdf file using the latex code in index.pdf.erb:

<%= link_to "print", latex_example_path(:format => :pdf) %>

Is it also possible to generate a pdf file from let's say article_list.pdf.erb if there's no article_list.html.erb?
Do I have to change my routes for the problem? At the moment I only have the following route:
match ':controller(/:action(/:id(.:format)))'

Thanks for your help!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

许仙没带伞 2024-11-22 08:32:02

当您请求特定格式的 URL 时,无论其他格式模板如何,它都会呈现该格式。
请尝试一下,如果不起作用再询问。

When you are asking for a URL in a specific format, it will render this format regardless of the other format templates.
Please try it and ask again if not working.

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