我正在使用 prawn 生成 pdf,设置 ala https://github.com/prawnpdf/prawn/wiki
我想访问我的路线,这样我就可以在我的 pdf 中生成链接,但现在我不像以前使用 prawnto 那样使用模板,所以我无法访问命名的路线。
class MyPdf < Prawn::Document
def to_pdf
text root_path
end
end
如何包含我的命名路线?
我正在使用 prawn 生成 pdf,设置 ala https://github.com/prawnpdf/prawn/wiki
我想访问我的路线,这样我就可以在我的 pdf 中生成链接,但现在我不像以前使用 prawnto 那样使用模板,所以我无法访问命名的路线。
class MyPdf < Prawn::Document
def to_pdf
text root_path
end
end
如何包含我的命名路线?
你应该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
如果你的 Rails 4 应用程序中有一个独立的类,你可以在这个类中插入以下内容:
include Rails.application.routes.url_helper