Rails 4.2活动作业Resque排队未定义的方法问题

时间:2015-01-06 04:40:26

标签: ruby-on-rails ruby ruby-on-rails-4 resque rails-activejob

我正在关注https://blog.engineyard.com/2014/getting-started-with-active-job以在Rails 4.2中实现Active Job。但是在Resque面临以下问题。错误读取:

Worker
ChickenSmitten.local:64238 on EMAIL at just now Retry or Remove
Class
 ActiveJob::QueueAdapters::ResqueAdapter::JobWrapper
Arguments
---
job_class: PasswordResetJob
job_id: 35f70043-9a9b-4add-8700-a5f388350fb4
queue_name: email
arguments:
- bob@example.com
Exception
NoMethodError
Error
undefined method `email' for "bob@example.com":String

我的代码如下:

password_resets_controller.rb

  def create
    @user = User.find_by(email: params[:password_reset][:email].downcase)
    if @user
      @user.create_reset_digest
      @user.send_password_reset_email
      flash[:notice] = "Email sent with password reset instructions"
      redirect_to root_url
    else
      flash.now[:error] = "Email address not found"
      render 'new'
    end
  end

user.rb

  def send_password_reset_email
    PasswordResetJob.new(self.email).enqueue(wait: 10.seconds)
  end  

应用程序/任务/ password_reset_job.rb

class PasswordResetJob < ActiveJob::Base
  queue_as :email

  def perform(email)
    UserMailer.password_reset(email).deliver_now
  end
end

应用程序/邮寄者/ user_mailer.rb

class UserMailer < ActionMailer::Base
  default from: "noreply@example.com"

  def password_reset(user)
    @user = user
    mail to: user.email, subject: "Password Reset"
  end

end

不知何故,来自user.rb的“self.email”未传递给password_reset_job.rb。因此,“bob@example.com”的错误“未定义方法`email'”:字符串“。

提前致谢。

更新

根据Prakash的建议并进行如下更改,将“self.email”改为“self”:

  def send_password_reset_email
    PasswordResetJob.new(self).enqueue(wait: 10.seconds)
  end 

弹出一个新错误。这是错误:

ActionView::Template::Error
No route matches {:action=>"edit", :controller=>"password_resets", :email=>"bob@example.com", :format=>nil, :id=>nil} missing required keys: [:id]

以下是可能有用的更多细节。

[2] pry(#<User>)> PasswordResetJob.new(self).enqueue(wait: 10.seconds)
[ActiveJob] Enqueued PasswordResetJob (Job ID: 6bdcca3c-367d-48ea-b3c9-1f5378e5df57) to Resque(email) at 2015-01-06 04:58:28 UTC with arguments: gid://affiliation/User/1
=> #<PasswordResetJob:0x007fbd4c028dc8
 @arguments=
  [#<User:0x007fbd4b686590
    id: 1,
    username: "bob",
    email: "bob@example.com",
    password_digest: "$2a$10$dbbEBwNgBtaZEvtl7EsUm./hdukr3MMKlUWdouV3RwIFMmMPfR6CS",
    created_at: Thu, 01 Jan 2015 03:38:54 UTC +00:00,
    updated_at: Tue, 06 Jan 2015 04:58:01 UTC +00:00,
    role: "admin",
    slug: "bob",
    activation_digest: "$2a$10$wdoO7vn5Ng4U4TEPCmqVFeVYAB8sZ2CKEpVFfduYyD7Ee.NfvSRsi",
    activated: true,
    activated_at: Thu, 01 Jan 2015 03:41:19 UTC +00:00,
    remember_digest: nil,
    reset_digest: "$2a$10$Eu1jYllohAY2IQO4Uc.0TuyNmRWWuu3jQgjZrIZLwFlo1t8n1hNZO",
    reset_sent_at: Tue, 06 Jan 2015 04:58:01 UTC +00:00,
    url: "www.google.com",
    bio: "Woo ga shaka.">],
 @job_id="6bdcca3c-367d-48ea-b3c9-1f5378e5df57",
 @queue_name="email",
 @scheduled_at=1420520308.6658938>

视图/ user_mailer文件/ password_reset.html.rb

<h1>Password reset</h1>

<p>To reset your password click the link below:</p>

<%= link_to "Reset password", edit_password_reset_url(@user.reset_token,
                                                      email: @user.email) %>

<p>This link will expire in two hours.</p>

<p>
If you did not request your password to be reset, please ignore this email and
your password will stay as it is.
</p>

2 个答案:

答案 0 :(得分:1)

您正在将电子邮件传递给PasswordResetJob,后者将其传递给邮件程序,但邮件程序需要一个User实例。

PS:您可以直接在模型中执行UserMailer.password_reset(self.email).deliver_later。见http://api.rubyonrails.org/classes/ActionMailer/MessageDelivery.html#method-i-deliver_later

答案 1 :(得分:0)

def perform(email)
  UserMailer.password_reset(email).deliver_now
end

这是使用password_resetUserMailer中调用email方法(在此特定情况下,其价值为bob@example.com

def password_reset(user)
  @user = user
  mail to: user.email, subject: "Password Reset"
end

因此,在password_reset方法中,user设置为bob@example.com,因此在调用user.email时失败。

解决此问题的一种方法是使方法如下:

应用程序/邮寄者/ user_mailer.rb

class UserMailer < ActionMailer::Base
  default from: "noreply@example.com"

  def password_reset(email)
    mail to: email, subject: "Password Reset"
  end

end

您可能必须根据具体需求找到不同的方式。