每当我在数据库中输入新记录时,除非重新启动Heroku服务器,否则虾不会被大虾识别。我在本地没有问题(使用Cloud9),但是在使用heroku时出现类似以下错误:
NameError(未定义的局部变量或方法`method_199'“
找不到method_199
,因为我刚刚将其添加到了数据库中。如果我将代码重新部署到heroku,则它将识别method_199
。
这似乎只是我的虾pdf的问题。在heroku网站上,数据库的其余部分似乎可以更新并响应良好(这意味着我可以进行更新,并且无需重新部署应用即可显示它)
pdf.rb
class ReportTwoPdf < Prawn::Document
def initialize(property, current_user, start_date, end_date)
super(top_margin: 50)
@property = property
@current_user = current_user
@start_date = start_date
@end_date = end_date
# @activity_types.each do |type|
# eval("test_#{type.id}")
# end
current_user.activity_types.each do |type|
if @property.activities.where(activity_type_id: type.id).where(:date =>
(@start_date..@end_date)).count > 0
eval("method_#{type.id}")
else
end
end
end
ActivityType.all.each do |type|
define_method("method_#{type.id}") do
move_down 20
a = [1,
type.subject_toggle == "Show" ? 1 : nil,
type.contact_toggle == "Show" ? 1 : nil,
type.agent_toggle == "Show" ? 1 : nil,
type.customer_toggle == "Show" ? 1 : nil,
type.detail_toggle == "Show" ? 1 : nil,
type.outcome_toggle == "Show" ? 1 : nil,
type.cost_toggle == "Show" ? 1 : nil,
type.duration_toggle == "Show" ? 1 : nil].compact.length - 1
font "Nunito"
text type.title, :align => :left, size: 12, style: :bold
move_down 5
table eval("row_#{type.id}"), :position => :center, :width => 540,
:column_widths => {0 => 50,1 => @min_width, a => 60},
:cell_style => {:font => "Nunito", :size => 9} do
row(0).font_style = :bold
columns(0..8).align = :center
self.row_colors = ["F0F0F0", "FFFFFF"]
self.header = true
end
end
end
控制器:
def create_pdf
@property = Property.find(params.fetch("id_to_display"))
@current_user = current_user
@start_date = Date.strptime(params.fetch("start_date"), "%Y-%m-%d")
@end_date = Date.strptime(params.fetch("end_date"), "%Y-%m-%d")
@user = current_user
respond_to do |format|
format.html
format.pdf do
pdf = ReportTwoPdf.new(@property, @current_user, @start_date, @end_date)
send_data pdf.render, :filename => "Report: #{@property.address}.pdf", :type => "application/pdf", disposition: "inline"
end
end
end
GemFile
gem "prawn"
gem 'prawn-table'
答案 0 :(得分:0)
此行为是预期的,因为在生产环境中,在服务器启动时仅对类进行一次评估。这通常仅在部署或扩展时发生。 ActivityType
中的数据显然可以比部署更频繁地更改
我不明白为什么需要定义这些动态方法,您可以像处理任何其他数据一样处理ActivityType
:
class ReportTwoPdf < Prawn::Document
def initialize(property, current_user, start_date, end_date)
super(top_margin: 50)
@property = property
@current_user = current_user
@start_date = start_date
@end_date = end_date
current_user.activity_types.each do |type|
if @property.activities.where(activity_type_id: type.id).where(date: (@start_date..@end_date)).count > 0
handle_activity_type(type)
else
end
end
end
def some_row_similar(type)
# here goes the code
end
def handle_activity_type(type)
move_down 20
a = [
type.subject_toggle,
type.contact_toggle,
type.agent_toggle,
type.customer_toggle,
type.detail_toggle,
type.outcome_toggle,
type.cost_toggle,
type.duration_toggle
].count{|toggle| toggle == "Show" }
font "Nunito"
text type.title, align: :left, size: 12, style: :bold
move_down 5
table some_row_similar(type), position: :center, width: 540,
column_widths: {0 => 50, 1 => @min_width, a => 60},
cell_style: {font: "Nunito", size: 9} do
row(0).font_style = :bold
columns(0..8).align = :center
self.row_colors = ["F0F0F0", "FFFFFF"]
self.header = true
end
end
end