Hartl 的 rails 教程 ch11:为什么我的 account_activation 邮件程序模板预览不起作用?
Hartl's rails tutorial ch11: Why is my account_activation mailer template preview not working?
我在 Hartl 的 rails 教程的 ch11,第 11.2.1 节邮件程序模板中,密码重置邮件程序的预览工作正常,但 account_activation 预览不工作。即使我没有对代码进行任何更改,错误实际上也发生了变化,这令人困惑。但是我目前收到的错误是
NoMethodError in Rails::Mailers#preview
Showing /home/ubuntu/workspace/sample_app/app/views/user_mailer/account_activation.html.erb where line #3 raised:
undefined method `name' for nil:NilClass
Extracted source (around line #3)
<h1>Sample App</h1>
<p>Hi <%=@user.name %>,</p>
<p>
Welcome to the Sample App! Click on the link below to activate your account:
这是我的 user_mailer.rb
class UserMailer < ApplicationMailer
def account_activation(user)
@user = user
mail to: user.email, subject: "Account activation"
end
def account_activation
@greeting = "Hi"
mail to: "to@example.org"
end
def password_reset
@greeting = "Hi"
mail to: "to@example.org"
end
end
account_activations_controller.rb(教程中到目前为止还没有指定代码)
class AccountActivationsController < ApplicationController
end
和错误来源account_activation.html.erb
<h1>Sample App</h1>
<p>Hi <%=@user.name %>,</p>
<p>
Welcome to the Sample App! Click on the link below to activate your account:
</p>
<%= link_to "Activate", edit_account_activation_url(@user.activation_token,
email: @user.email) %>
它似乎无法识别用户的姓名。为什么会这样? (注意:所有代码都是从教程中复制的,所以我不知道错误的原因)
谢谢。
编辑:根据评论,确实有 2 个 account_activation 方法。我删除了第二个并保留了第一个。现在错误已更改为参数错误。
ArgumentError in Rails::MailersController#preview
wrong number of arguments (given 0, expected 1)
def account_activation(user)
@user = user
mail to: user.email, subject: "Account activation"
end
此方法似乎在以下文件中使用而没有参数。
/sample_app/test/mailers/previews/user_mailer_preview.rb
class UserMailerPreview < ActionMailer::Preview
# Preview this email at http://localhost:3000/rails/mailers/user_mailer/account_activation
def account_activation
user = User.first
user.activation_token = User.new_token
UserMailer.account_activation(user)
UserMailer.account_activation
end
# Preview this email at http://localhost:3000/rails/mailers/user_mailer/password_reset
def password_reset
UserMailer.password_reset
end
end
在您的 UserMailer
中,您当前有 2 个版本的 account_activation
方法 - 一个接受 user
参数,另一个不接受。在 Ruby 中,class 中不能有 2 个同名方法,因此第二种方法将替换前面的方法。
我不熟悉本教程的所有内容,但似乎没有参数的方法来自本教程的前面,现在应该删除了。
然后您需要检查您调用的代码 UserMailer.account_activation.deliver...
并更新它以传递给用户。
更新
在 user_mailer_preview.rb
中你调用了 account_activation
两次:
...
UserMailer.account_activation(user)
UserMailer.account_activation
...
不带 user
的调用应删除。
我在 Hartl 的 rails 教程的 ch11,第 11.2.1 节邮件程序模板中,密码重置邮件程序的预览工作正常,但 account_activation 预览不工作。即使我没有对代码进行任何更改,错误实际上也发生了变化,这令人困惑。但是我目前收到的错误是
NoMethodError in Rails::Mailers#preview
Showing /home/ubuntu/workspace/sample_app/app/views/user_mailer/account_activation.html.erb where line #3 raised:
undefined method `name' for nil:NilClass
Extracted source (around line #3)
<h1>Sample App</h1>
<p>Hi <%=@user.name %>,</p>
<p>
Welcome to the Sample App! Click on the link below to activate your account:
这是我的 user_mailer.rb
class UserMailer < ApplicationMailer
def account_activation(user)
@user = user
mail to: user.email, subject: "Account activation"
end
def account_activation
@greeting = "Hi"
mail to: "to@example.org"
end
def password_reset
@greeting = "Hi"
mail to: "to@example.org"
end
end
account_activations_controller.rb(教程中到目前为止还没有指定代码)
class AccountActivationsController < ApplicationController
end
和错误来源account_activation.html.erb
<h1>Sample App</h1>
<p>Hi <%=@user.name %>,</p>
<p>
Welcome to the Sample App! Click on the link below to activate your account:
</p>
<%= link_to "Activate", edit_account_activation_url(@user.activation_token,
email: @user.email) %>
它似乎无法识别用户的姓名。为什么会这样? (注意:所有代码都是从教程中复制的,所以我不知道错误的原因) 谢谢。
编辑:根据评论,确实有 2 个 account_activation 方法。我删除了第二个并保留了第一个。现在错误已更改为参数错误。
ArgumentError in Rails::MailersController#preview
wrong number of arguments (given 0, expected 1)
def account_activation(user)
@user = user
mail to: user.email, subject: "Account activation"
end
此方法似乎在以下文件中使用而没有参数。
/sample_app/test/mailers/previews/user_mailer_preview.rb
class UserMailerPreview < ActionMailer::Preview
# Preview this email at http://localhost:3000/rails/mailers/user_mailer/account_activation
def account_activation
user = User.first
user.activation_token = User.new_token
UserMailer.account_activation(user)
UserMailer.account_activation
end
# Preview this email at http://localhost:3000/rails/mailers/user_mailer/password_reset
def password_reset
UserMailer.password_reset
end
end
在您的 UserMailer
中,您当前有 2 个版本的 account_activation
方法 - 一个接受 user
参数,另一个不接受。在 Ruby 中,class 中不能有 2 个同名方法,因此第二种方法将替换前面的方法。
我不熟悉本教程的所有内容,但似乎没有参数的方法来自本教程的前面,现在应该删除了。
然后您需要检查您调用的代码 UserMailer.account_activation.deliver...
并更新它以传递给用户。
更新
在 user_mailer_preview.rb
中你调用了 account_activation
两次:
...
UserMailer.account_activation(user)
UserMailer.account_activation
...
不带 user
的调用应删除。