在 YAML 中,当某个项目有子项目时,如何定义该项目的值?
如何让 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您正在定义一个哈希,
cars
的值是一个哈希,其键为 fiat 和 bmwYou are defining a Hash, the value of
cars
is a hash whose keys are fiat and bmw