2

我正在使用 Ruby on Rails 3.0.9 和 DelayedJob 2.1,并且我正在尝试使用 ActiveModel 功能实现自己的“联系我们”表单。所以...

...在我的模型文件中,我有:

class ContactUs
  include ActiveModel::Conversion
  include ActiveModel::Validations


  attr_accessor :full_name, :email, :subject, :message

  def initialize(attributes = {})
    attributes.keys.each do |attr|
      instance_variable_set "@" + attr.to_s, attributes[attr.to_sym]
    end
  end


  validates :full_name,
    :presence   => true

  validates :email,
    :presence   => true

  validates :subject,
    :presence   => true

  validates :message,
    :presence   => true


  def persist
    @persisted = true
  end

  def persisted?
    false
  end
end

...在我的视图文件中,我有:

<%= form_for @contact_us, :url => contact_us_path do |f| %>
  <%= f.text_field :full_name %>
  <%= f.text_field :email %>
  <%= f.text_field :subject %>
  <%= f.text_area  :message %>
<% end %>

...在我的路由器文件中,我有:

match 'contact_us' => 'pages#contact_us', :via => [:get, :post]

...在我的控制器文件中,我有:

class PagesController < ApplicationController
  def contact_us
    case request.request_method

    when 'GET'
      @contact_us = ContactUs.new

    when 'POST'
      @contact_us = ContactUs.new(params[:contact_us])

      # ::Pages::Mailer.delay.contact_us(@contact_us) # If I use this code, I will get an error with the 'full_name' attribute (read below for more information)
      ::Pages::Mailer.contact_us(@contact_us).deliver # If I use this code, it will work
    end
  end
end

一切正常,除非我使用与电子邮件模板中的类属性相关::Pages::Mailer.delay.contact_us(@contact_us)的方法的代码full_namefull_name(但是,它在电子邮件模板中我调用该full_name方法时有效)。也就是说,当我将以下电子邮件模板与 Dalayed Job 一起使用时,我得到一个undefined method 'full_name\' for #<ContactUs:0x000001041638c0> \n/RAILS_ROOT/app/views/pages/mailer/contact_us.html.erb

MESSAGE CONTENT:
<br /><br />

<%= @message_content.full_name %> # If I comment out this line it will work.
<br />
<%= @message_content.email %>
<br />
<%= @message_content.subject %>
<br />
<%= @message_content.message %>

当我使用上面没有Dalayed Job 的电子邮件模板(即使用::Pages::Mailer.contact_us(@contact_us).deliver代码)时,它可以工作。

相关邮件代码为:

class Pages::Mailer < ActionMailer::Base
  default_url_options[:host] = <my_web_site_URL>
  default :from => "<my_email_address@provaider_name.com"

  def contact_us(message_content)
    @message_content = message_content

    mail(
      :to      => <my_email_address@provaider_name.com>,
      :subject => "Contact us"
    ) do |format|
      format.html
    end
  end
end

但是,如果我发送一封::Pages::Mailer.delay.contact_us(@contact_us)包含 a@message_content.inspect而不是的简单电子邮件(使用 ),@message_content.full_name我会在收到电子邮件时得到以下输出(注意full_name实例变量存在!):

#<ContactUs:0x000001013fc378 @full_name="Sample name text", @email="sample@email_provider.com", @subject="Sample subject text", @message="Sample message text", @validation_context=nil, @errors={}> 

Dalayed Job 有什么问题,我该如何解决?


我真的不明白为什么会发生这种情况,因为我有full_name类似的工作,例如,email所有工作的属性。我还尝试重新启动我的 Apache2 服务器。

4

1 回答 1

0

不幸的是,DelayedJob 不允许模型中的属性访问器。经过很多很多小时的努力让它发挥作用,我才学会了这一点。如果您创建自定义 DelayedJob 作业,您将能够专门为该作业的类创建属性。

于 2013-07-19T06:21:37.730 回答