我正在尝试使用操作邮件程序向我的rails应用程序添加密码重置功能。一切似乎都工作正常,除了生成的重置密码的链接不正确。
以下是文件:
File user_mailer.rb
:
class UserMailer < ActionMailer::Base
default from: "from@example.com"
def password_reset(user)
@user = user #make the user available in mailer template
mail :to => user.email, :subject => "Password Reset"
end
end
File password_reset.text.erb
包含以下链接:
<%= edit_password_resets_url(@user.password_reset_token) %>
当我收到电子邮件和令牌值时,我可以看到用户变量已正确传递。但是,邮件程序中生成的 URL 如下所示:
http://localhost:3000/password_reset/edit.jo_jYhkjsdjskjdskYHJSDA
但是,期望值是这样的
http://localhost:3000/password_resets/jo_jYhkjsdjskjdskYHJSDA/edit
routes.rb
有以下内容
resource :password_resets
此外,耙子路线显示以下内容:
edit_password_resets GET /password_resets(.:format) password_resets#edit
可能出现什么问题?
注意:我正在关注瑞安·贝茨的铁轨演员表 #274
似乎config/routes.rb
包含resource :password_resets
而不是resources :password_resets
。作为单一资源,这将为/password_resets/edit(.:format)
添加edit_password_resets
路由。将值传递到edit_password_resets_url
将映射到edit.<value>
,与您描述的症状一致。
将其更改为resources :password_resets
应该可以解决问题。它还会将路由重命名为 edit_password_reset
- 单数,因为它适用于成员,而不是适用于集合的复数。