YAML 配置 - 替换字符串中符号的最佳方法

发布于 2024-10-15 03:19:32 字数 219 浏览 3 评论 0原文

我有一个 YAML 格式的配置文件,其中有一些路径在我的 Rails 应用程序中,如下所示:

config
    :path1: /a/b/c
    :path2: /a/:id/c

path1 没有太大帮助。每次我使用 config[:path2] 时,我都需要用我拥有的值替换 :id 。有可能吗?

希望这已经足够清楚了。 谢谢!

I have a configuration file in YAML format with some paths in my rails applications like this:

config
    :path1: /a/b/c
    :path2: /a/:id/c

path1 doesn't helps too much. I need that every time I use config[:path2] to somehow replace the :id with a value I have. It is possible?

Hope this was clear enough.
Thanks!

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

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

发布评论

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

评论(1

走过海棠暮 2024-10-22 03:19:32

你可以使用一点ERB。

# config.yml
config
    :path1: /a/b/c
    :path2: /a/<%= id %>/c
    :path3: <%= path3 %>

id = "23"
path3 = "hello/world"

t = ERB.new(File.read("config.yml"))
c = YAML.load(t.result(binding).to_s)

c["config"][:path2]
# => /a/23/c
c["config"][:path3]
# => /hello/world

You can use a bit of ERB.

# config.yml
config
    :path1: /a/b/c
    :path2: /a/<%= id %>/c
    :path3: <%= path3 %>

and

id = "23"
path3 = "hello/world"

t = ERB.new(File.read("config.yml"))
c = YAML.load(t.result(binding).to_s)

c["config"][:path2]
# => /a/23/c
c["config"][:path3]
# => /hello/world
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文