ruby-on-rails – 设计忘记密码正在产品上创建与localhost的链接?

前端之家收集整理的这篇文章主要介绍了ruby-on-rails – 设计忘记密码正在产品上创建与localhost的链接?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我们正在使用标准设计忘记密码邮件
<p>Hello <%= @resource.email %>!</p>

<p>Someone has requested a link to change your password,and you can do this through the link below.</p>

<p><%= link_to 'Change my password',edit_password_url(@resource,:reset_password_token => @resource.reset_password_token) %></p>

在生产时,这是为更改密码生成本地主机URL:

http://localhost:3000/users/password/edit?reset_password_token=amqs2q9NcM1FerHKhmzV

鉴于production.rb文件包含我们的域名,这很奇怪:

config.action_mailer.default_url_options = { :host => 'mysite.com' }

为什么没有在URL中使用mysite.com?想法?

谢谢

解决方法

我的猜测是在某处覆盖了config.action_mailer.default_url_options.您是否在配置/初始化程序中有任何影响ActionMailer的文件

尝试在生产盒上运行rails console,看看是什么

ActionMailer::Base.default_url_options[:host]

回报.

原文链接:https://www.f2er.com/ruby/268987.html

猜你在找的Ruby相关文章