将动态YAML解组为结构图

时间:2017-10-14 21:02:56

标签: go yaml unmarshalling

我正在尝试解组以下YAML(使用gopkg.in/yaml.v2):

m:
  - unit: km
    formula: magnitude / 1000
    testFixtures:
      - input: 1000
        expected: 1
l:
  - unit: ml
    formula: magnitude * 1000
    testFixtures:
      - input: 1
        expected: 1000

使用以下代码:

type ConversionTestFixture struct {
    Input    float64 `yaml:"input"`
    Expected float64 `yaml:"expected"`
}

type conversionGroup struct {
    Unit         string                  `yaml:"unit"`
    Formula      string                  `yaml:"formula"`
    TestFixtures []ConversionTestFixture `yaml:"testFixtures"`
}
conversionGroups := make(map[string]conversionGroup)

err = yaml.Unmarshal([]byte(raw), &conversionGroups)
if err != nil {
    return
}

fmt.Println("conversionGroups", conversionGroups)

但它给了我以下错误:

Error: Received unexpected error:

yaml: unmarshal errors:

  line 1: cannot unmarshal !!map into []map[string]main.conversionGroup

顶级属性是动态的,因此我需要将它们解析为字符串,结构中的每个其他键将始终相同,因此这些部分的结构。我怎么解析这个?

(完整代码位于https://github.com/tirithen/unit-conversion/blob/master/convert.go#L84

1 个答案:

答案 0 :(得分:4)

问题是,ml的内容不是conversionGroup,而是conversionGroup的列表。

试试这个:

conversionGroups := make(map[string][]conversionGroup)

它应该解析。请注意[]之前的conversionGroup

然后问题是你是否真正想要的结构:)