最佳答案
我要 在 YAML 中重用散列:
Defaults: &defaults
Company: Foo
Item: 123
Computer: *defaults
Price: 3000
但是,这会生成一个错误。
锚定每个字段值的唯一方法是单独的 像这样吗?
Defaults:
Company: &company Foo
Item: &item 123
Computer:
Company: *company
Item: *item
Price: 3000