Adhearsion 中的 Ruby YML 文件 - 我应该在哪里加载该文件?
这段代码全部存在于 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果你只想加载一个,那么也许常量对你来说就可以了?
那么如果你想在另一个类中使用它,那么你可以这样做:
if you want to loads it only one then maybe constant will be OK for you?
then if you want to use it in another class then you can do something like this: