gpt4 book ai didi

ruby-on-rails - 在初始化时设置 default_url_options

转载 作者:行者123 更新时间:2023-12-04 05:43:26 25 4
gpt4 key购买 nike

我需要在我的 rails 应用程序的环境之一中强制主机。

我可以通过包括

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

在 app/controllers/application.rb 中

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

但是当我尝试
   config.action_controller.default_url_options = { ... }

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

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

有什么想法吗?

最佳答案

答案是......这是不可能的,因为 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

关于ruby-on-rails - 在初始化时设置 default_url_options,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3928622/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com