我正在使用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_name
类属性相关的方法full_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)
而不是@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服务器。
答案 0 :(得分:0)
不幸的是,DelayedJob不允许模型中的属性访问器。经过许多小时的尝试才能让它发挥作用,我学到了很多困难。如果您创建自定义的DelayedJob作业,则可以专门为该作业的类创建属性。