在 YAML 中,当某个项目有子项目时,如何定义该项目的值?

发布于 2024-11-02 16:41:14 字数 342 浏览 3 评论 0原文

如何让 YAML 允许我将值 The Cars 赋予 cars

en:
  cars: The Cars   #this causes a syntax error. If I remove 'The Cars', it works fine.
    fiat: Fiat
    bmw: Beemer

我想要 cars 的值的原因是我想要能够做到这一点:

t('cars') # => The Cars
t('cars.fiat') # => Fiat

How do I get YAML to allow me to give the value The Cars to cars:

en:
  cars: The Cars   #this causes a syntax error. If I remove 'The Cars', it works fine.
    fiat: Fiat
    bmw: Beemer

The reason I want a value for cars is that I want to be able to do this:

t('cars') # => The Cars
t('cars.fiat') # => Fiat

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

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

发布评论

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

评论(1

殊姿 2024-11-09 16:41:14

您正在定义一个哈希,cars 的值是一个哈希,其键为 fiat 和 bmw

You are defining a Hash, the value of cars is a hash whose keys are fiat and bmw

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