gpt4 book ai didi

ruby-on-rails - 每页的页脚在 rails 3.2 中不起作用( Prawn PDF)

转载 作者:行者123 更新时间:2023-12-03 11:12:52 24 4
gpt4 key购买 nike

我的 Rails 3 应用程序中安装了 prawn gem。

我想知道为什么我的页脚在每个页面上都不起作用。

它只在最后一页的末尾起作用。

这是我的代码:

(我对 Prawn 很陌生)

所以请多多包涵。

任何解决方法将不胜感激

require 'prawn'
require 'rubygems'
require 'date'

pdf = Prawn::Document.new(:page_layout => :landscape,:skip_page_creation => true,:margin => [5,5,5,5]) do
start_new_page
pdf.font "Helvetica"
end


pdf.text "Project Procurement Management Plan (PPMP)", :size=> 12, :spacing => 4, :align=> :center

pdf.move_down 400


pdf.text "Text"
pdf.text "Text"
pdf.text "Text"
pdf.text "Text"
pdf.text "Text"
pdf.text "Text"
pdf.text "Text"
pdf.text "Text"
pdf.text "Text"
pdf.text "Text"
pdf.text "Text"
pdf.text "Text"
pdf.text "Text"
pdf.text "Text"
pdf.text "Text"
pdf.text "Text"
pdf.text "Text"
pdf.text "Text"
pdf.text "Text"
pdf.text "Text"


# This is the footer code

pdf.bounding_box([pdf.bounds.right - 59, pdf.bounds.bottom - -20], :width => 60, :height => 20) do

pagecount = pdf.page_count
pdf.text "Page #{pagecount}"
end

已解决!

看看我在下面发现了什么。

最佳答案

嗨,我已经找到答案了。

对于那些遇到这样麻烦的人:

pdf.repeat :all do

pdf.bounding_box [pdf.bounds.left, pdf.bounds.bottom + 25], :width => pdf.bounds.width do
pdf.stroke_horizontal_rule
pdf.move_down(5)
pdf.text "#{current_user.first_name}", :size => 10
end
end

关于ruby-on-rails - 每页的页脚在 rails 3.2 中不起作用( Prawn PDF),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15196881/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com