dou4121 2016-08-27 02:47
浏览 66
已采纳

使用地图将YAML编组为结构

I'm attempting to unmarshal a YAML file into a struct containing two maps (using go-yaml).

YAML-file:

'Include':
    - 'string1'
    - 'string2'

'Exclude':
    - 'string3'
    - 'string4'

The struct:

type Paths struct {
    Include map[string]struct{}
    Exclude map[string]struct{}
}

A simplified version (i.e. removed error handling etc.) of the function attempting to unmarshal:

import "gopkg.in/yaml.v2"

func getYamlPaths(filename string) (Paths, error) {
    loadedPaths := Paths{
        Include: make(map[string]struct{}),
        Exclude: make(map[string]struct{}),
    }

    filenameabs, _ := filepath.Abs(filename)
    yamlFile, err := ioutil.ReadFile(filenameabs)

    err = yaml.Unmarshal(yamlFile, &loadedPaths)
    return loadedPaths, nil
}

Data is being read from the file, but the unmarshal-function is not putting anything into the struct, and is returning no errors.

I suspect that the unmarshal-function cannot turn the YAML collections into map[string]struct{}, but as mentioned it is producing no errors, and I've looked around for similar issues and can't seem to find any.

Any clues or insight would be much appreciated!

  • 写回答

1条回答 默认 最新

  • douhao123457 2016-08-27 03:03
    关注

    Through debugging I found multiple problems. First, yaml doesn't seem to care about the fields names. You have to annotate the fields with a

    `yaml:"NAME"`
    

    Second, in the YAML file, Include and Exclude both contain only a list of strings, not something similar to a map. So your struct becomes:

    type Paths struct {
        Include []string `yaml:"Include"`
        Exclude []string `yaml:"Exclude"`
    }
    

    And it works. Full code:

    package main
    
    import (
        "fmt"
        "gopkg.in/yaml.v2"
    )
    
    var str string = `
    'Include':
        - 'string1'
        - 'string2'
    
    'Exclude':
        - 'string3'
        - 'string4'
    `
    
    type Paths struct {
        Include []string `yaml:"Include"`
        Exclude []string `yaml:"Exclude"`
    }
    
    func main() {
        paths := Paths{}
    
        err := yaml.Unmarshal([]byte(str), &paths)
    
        fmt.Printf("%v
    ", err)
        fmt.Printf("%+v
    ", paths)
    }
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥100 set_link_state
  • ¥15 虚幻5 UE美术毛发渲染
  • ¥15 CVRP 图论 物流运输优化
  • ¥15 Tableau online 嵌入ppt失败
  • ¥100 支付宝网页转账系统不识别账号
  • ¥15 基于单片机的靶位控制系统
  • ¥15 真我手机蓝牙传输进度消息被关闭了,怎么打开?(关键词-消息通知)
  • ¥15 装 pytorch 的时候出了好多问题,遇到这种情况怎么处理?
  • ¥20 IOS游览器某宝手机网页版自动立即购买JavaScript脚本
  • ¥15 手机接入宽带网线,如何释放宽带全部速度