YAML 配置 - 替换字符串中符号的最佳方法
我有一个 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
你可以使用一点ERB。
和
You can use a bit of ERB.
and