1. ホーム
  2. yaml

[解決済み] YAMLでコードブロックを再利用する

2023-03-08 16:39:58

質問

私は ハッシュを再利用したい :

Defaults: &defaults
  Company: Foo
  Item: 123

Computer: *defaults
  Price: 3000

しかし、これではエラーが発生します。

各フィールドの値を別々にアンカー処理する唯一の方法である のように ?

Defaults:
  Company: &company Foo
  Item: &item 123

Computer:
  Company: *company
  Item: *item
  Price: 3000

どのように解決するのですか?

# sequencer protocols for Laser eye surgery
---
- step:  &id001                  # defines anchor label &id001
    instrument:      Lasik 2000
    pulseEnergy:     5.4
    pulseDuration:   12
    repetition:      1000
    spotSize:        1mm

- step: &id002
    instrument:      Lasik 2000
    pulseEnergy:     5.0
    pulseDuration:   10
    repetition:      500
    spotSize:        2mm

- step: *id001                   # refers to the first step (with anchor &id001)
- step: *id002                   # refers to the second step
- step: *id001
- step: *id002

サンプル ウィキペディア