使用rails-latex渲染没有相应html视图的pdf
我试图在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
当您请求特定格式的 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.