我已经在谷歌上搜索了大约90分钟,仍然没有答案。我在哪里设置default_url_options?我已经设置了config.action_mailer.default_url_options来解决其他地方的这个错误,但现在我在尝试使用RSpec规范内的URL helper时得到了这个错误。我不知道它在哪里期望default_url_options被设置。

 Failure/Error: listing_url(listing).should match(/\/\d+-\w+$/)
 RuntimeError:
   Missing host to link to! Please provide :host parameter or set default_url_options[:host]
 # ./spec/routing/listing_routing_spec.rb:9:in `block (3 levels) in <top (required)>'

这段代码与电子邮件/ActionMailer无关,它只是需要一个URL而不是路径。

什么好主意吗?


当前回答

我也犯了同样的错误。我正确地编写了所有内容,包括教程中的清单10.13。

Rails.application.configure do
.
.
.
config.action_mailer.raise_delivery_errors = true
config.action_mailer.delevery_method :test
host = 'example.com'
config.action_mailer.default_url_options = { host: host }
.
.
.
end

显然,把"example.com"换成了我的服务器url。

我在教程中忽略的是这一行:

重新启动开发服务器以激活配置…

所以对我来说,答案是关闭服务器,然后重新打开。

其他回答

主机应该在每个环境的配置文件中指定。例如:

config/environments/development.rb

看看这个问题和这个问题。

我也犯了同样的错误。我正确地编写了所有内容,包括教程中的清单10.13。

Rails.application.configure do
.
.
.
config.action_mailer.raise_delivery_errors = true
config.action_mailer.delevery_method :test
host = 'example.com'
config.action_mailer.default_url_options = { host: host }
.
.
.
end

显然,把"example.com"换成了我的服务器url。

我在教程中忽略的是这一行:

重新启动开发服务器以激活配置…

所以对我来说,答案是关闭服务器,然后重新打开。

有趣的是,设置config.action_mailer.default_url_options对我没有帮助。此外,在我觉得不属于环境的地方摆弄与环境无关的设置对我来说并不满意。此外,我想要一个解决方案,在sidekiq/resque工人生成url时工作。

到目前为止,我的方法是进入config/environments/{development, production}.rb:

MyApp::Application.configure do
    # Stuff omitted...

    config.action_mailer.default_url_options = {
      # Set things here as usual
    }
end

MyApp::Application.default_url_options = MyApp::Application.config.action_mailer.default_url_options

这适用于我在rails >= 3.2.x。

Rails.application.routes.default_url_options(主持人):= ' localhost: 3000

在发展中。Rb / test。Rb,可以更简洁如下:

Rails.application.configure do
  # ... other config ...

  routes.default_url_options[:host] = 'localhost:3000'
end

进入config/environments/test.rb

Rails.application.routes.default_url_options[:host] = 'localhost:3000'