Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我需要使用 Rails 3.0.3 生成 PDF。
瑞恩·贝茨 (Ryan Bates) 展示的Prawn + Prawnto 看起来很棒
但我不能让他的例子有效,该table函数不能被pdf变量识别
table
pdf
对这个问题有任何见解吗?
谢谢
打开 prawn-core-0.8.4\lib\prawn\core.rb
在该文件的底部,您将看到所有“需要”项目的列表。如果您不想在视图中添加 require 'prawn/layout',我认为这是您应该添加的地方。仍然不理想,因为您正在自定义插件。
我找到了一个快速解决方案,但对它并不满意......
添加require 'prawn/layout'到我的视图中可以解决问题
require 'prawn/layout'