Adhearsion 中的 Ruby YML 文件 - 我应该在哪里加载该文件?

发布于 2024-12-02 22:16:23 字数 319 浏览 1 评论 0原文

这段代码全部存在于 dialplan.rb 的 inbound_did 上下文中,

host_config = YAML::load(File.open("config/hosts.yml")).to_hash
sip_hash = host_config["sip_hash"]
hostnames = host_config["hostnames"]

我试图弄清楚是否应该将 YAML::load 放在 dialplan.rb 或其他地方。我只想在启动 adhearsion 时加载它一次,但我不知道如何从 dialplan 的范围访问该配置变量...

This code all exists in inbound_did context in dialplan.rb

host_config = YAML::load(File.open("config/hosts.yml")).to_hash
sip_hash = host_config["sip_hash"]
hostnames = host_config["hostnames"]

I'm trying to figure out if I should put YAML::load in dialplan.rb or somewhere else. I'd like to only load it once when adhearsion is started but I don't know how I could then access that config variable from the dialplan's scope...

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

如果没有 2024-12-09 22:16:23

如果你只想加载一个,那么也许常量对你来说就可以了?

class Dialplan
  HOST_CONFIG = YAML::load(File.open("config/hosts.yml")).to_hash

  def some_method
    sip_hash = HOST_CONFIG["sip_hash"]
    hostnames = HOST_CONFIG["hostnames"]
  end
end

那么如果你想在另一个类中使用它,那么你可以这样做:

class Other
  def other_method
    sip_hash = Dialplan::HOST_CONFIG["sip_hash"]
    hostnames = Dialplan::HOST_CONFIG["hostnames"]
  end
end

if you want to loads it only one then maybe constant will be OK for you?

class Dialplan
  HOST_CONFIG = YAML::load(File.open("config/hosts.yml")).to_hash

  def some_method
    sip_hash = HOST_CONFIG["sip_hash"]
    hostnames = HOST_CONFIG["hostnames"]
  end
end

then if you want to use it in another class then you can do something like this:

class Other
  def other_method
    sip_hash = Dialplan::HOST_CONFIG["sip_hash"]
    hostnames = Dialplan::HOST_CONFIG["hostnames"]
  end
end
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文