4

我需要在我的 rails 应用程序中强制主机进入其中一个环境。

我可以通过包括

  def default_url_options(opts={})
   opts.merge({:host => 'stg.my-host.com'})
  end

在 app/controllers/application.rb

但是有没有办法在初始化时设置它,最好是在 config/environments/... 文件中?我想将条件环境逻辑保留在控制器之外。

但是当我尝试

   config.action_controller.default_url_options = { ... }

甚至

ActionController::Base.default_url_options = { ... }

我得到“未定义的方法”,即使在 config.after_initialize { ... }

有什么想法吗?

4

1 回答 1

6

答案是......这是不可能的,因为 default_url_options 是作为函数实现的,而不是 attr。

来自 action_pack/action_controller/base.rb:1053:

  # Overwrite to implement a number of default options that all url_for-based methods will use. The default options should come in
  # the form of a hash, just like the one you would use for url_for directly. Example:
  #
  #   def default_url_options(options)
  #     { :project => @project.active? ? @project.url_name : "unknown" }
  #   end
  #
  # As you can infer from the example, this is mostly useful for situations where you want to centralize dynamic decisions about the
  # urls as they stem from the business domain. Please note that any individual url_for call can always override the defaults set
  # by this method.
  def default_url_options(options = nil)
  end
于 2010-10-14T15:30:23.337 回答