如何在外部课堂中使用铁路路线?

发布于 2024-09-03 21:50:02 字数 353 浏览 16 评论 0原文

我正在使用 prawn 生成 pdf,设置 ala https://github.com/prawnpdf/prawn/ wiki

我想访问我的路线,这样我就可以在我的 pdf 中生成链接,但现在我不在模板中,就像我以前对 prawnto 所做的那样,所以我无法访问命名路线。

class MyPdf < Prawn::Document
  def to_pdf
    text root_path
  end
end

如何包含我的命名路线?

I'm using prawn to generate pdfs, set up ala https://github.com/prawnpdf/prawn/wiki

I'd like to access my routes so I can generate links in my pdfs, but now I'm not in a template like I used to do with prawnto, so I don't have access to the named routes.

class MyPdf < Prawn::Document
  def to_pdf
    text root_path
  end
end

How can I include my named routes?

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

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

发布评论

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

评论(2

ぽ尐不点ル 2024-09-10 21:50:02

你应该 include ActionController::UrlWriter

如果你尝试使用来自 Rails 环境外部的命名路由,那么你应该加载环境,但是加载会很慢

#If Rails environment is not loaded, be sure you include config/boot.rb correctly
require File.dirname(__FILE__) + 'root_to_your_boot_rb_file'
require RAILS_ROOT + '/config/environment'

include ActionController::UrlWriter

You should include ActionController::UrlWriter

And if you are trying to use named routes from outside Rails environment, then you should load the environment, but this loading will be slow

#If Rails environment is not loaded, be sure you include config/boot.rb correctly
require File.dirname(__FILE__) + 'root_to_your_boot_rb_file'
require RAILS_ROOT + '/config/environment'

include ActionController::UrlWriter
绝情姑娘 2024-09-10 21:50:02

如果您的 Rails 4 应用程序中有一个独立的类,则可以在该类中插入以下内容:

include Rails.application.routes.url_helper

If you have an independent Class inside your Rails 4 app, you can insert the following in this class:

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