我尝试进行电子邮件验证。 我在电子邮件中使用了网址帮助程序:
<%= confirm_email_author_url(@author.confirm_token) %>
但是我得到了错误:
Missing host to link to! Please provide the :host parameter, set default_url_options[:host], or set :only_path to true
我在我的development.rb中添加了下一个代码:config.action_mailer.default_url_options = { host: "localhost", port: 3000 }
,但没有任何改变。