2

我有以下 resque 作业,它生成一个 csv 文件并将其发送到邮件程序。我想验证 csv 文件是否有数据,所以我不会通过电子邮件发送空白文件。出于某种原因,当我在 perform 方法之外编写方法时,它将不起作用。例如,当我知道 csv 文件的第一行有数据时,下面的代码将打印无效。如果我取消注释下面的行,确保它正常工作,但是我想将这个文件检查提取到一个单独的方法中。这个对吗?

class ReportJob
  @queue = :report_job

def self.perform(application_id, current_user_id)
 user = User.find(current_user_id)
 client_application = Application.find(client_application_id)
 transactions = application.transactions
 file = Tempfile.open(["#{Rails.root}/tmp/", ".csv"]) do |csv|
   begin
     csv_file = CSV.new(csv)
     csv_file << ["Application", "Price", "Tax"]
     transactions.each do |transaction|
       csv_file << [application.name, transaction.price, transaction.tax]
     end
   ensure
    ReportJob.email_report(user.email, csv_file)
    #ReportMailer.send_report(user.email, csv_file).deliver
     csv_file.close(unlink=true)
   end
 end
end

 def self.email_report(email, csv)
   array = csv.to_a
   if array[1].blank?
     puts "invalid"
   else
     ReportMailer.send_report(email, csv).deliver
   end
 end

end
4

1 回答 1

0

您应该这样调用您的方法:

ReportJob.email_report(email, csv)

否则,摆脱selfin:

def self.email_report(email, csv)
   # your implementation here.
end 

并定义您的方法如下:

def email_report(email, csv)
  # your implementation.
end

这就是我们所说的类方法和实例方法。

于 2013-01-28T22:44:03.420 回答