飞碟/ jruby on Rails 从视图生成 pdf
我正在尝试使用飞碟从 jruby on Rails 中的视图生成 pdf,并在控制器中使用以下代码:
def calendar
@patient = Patient.find_by_id(params[:id])
result = render_to_string
send_data( FlyingSaucer::create_pdf(result), :filename => "calendar.pdf",
:type => "application/pdf",
:disposition => 'attachment')
end
我收到错误
未初始化的常量患者控制器::FlyingSaucer
我需要控制器中的 java 和 Flying_saucer
任何帮助将不胜感激
I am trying to generate a pdf from a view in jruby on rails using flying saucer with the following code in the controller:
def calendar
@patient = Patient.find_by_id(params[:id])
result = render_to_string
send_data( FlyingSaucer::create_pdf(result), :filename => "calendar.pdf",
:type => "application/pdf",
:disposition => 'attachment')
end
I am getting an error
uninitialized constant PatientsController::FlyingSaucer
I am requiring java and flying_saucer in the controller
any help would be appreciated
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
尝试一下:
尝试查看此演示文稿的幻灯片 66 作为示例。
这可能也能有所帮助。
Try this:
Try looking at slide 66 of this presentation for an example.
This might also be of help.
确保飞碟罐子位于类路径中。
Ensure the flying saucer jars are in the classpath.