donglvhe7591 2017-12-21 10:41
浏览 58
已采纳

发出解析Yaml文件的问题

I have the following struct which filled after parsing yaml file The issue is that the quote is missing

File in.yaml

e.g.

_schema: "3.0.0"
bar:
- one

File out.yaml

_schema: 3.0.0
bar:
- one

As you can see I got 3.0.0 instead the “3.0.0” , Any idea how to overcome this

This is a small program which I've created to demonstrate the issue

package main

import (
    "gopkg.in/yaml.v2"
    "io/ioutil"
)

type Config struct {
    Schema string `yaml:"_schema"`
    Bar []string
}

func main() {

    cfg := Config{}
    source, err := ioutil.ReadFile("in.yaml")
    if err != nil {
        panic(err)
    }
    err = yaml.Unmarshal([]byte(source), &cfg)
    if err != nil {
        panic(err)
    }
    y, _ := yaml.Marshal(&cfg)
    err = ioutil.WriteFile("out.yaml", y, 0644)}

}
  • 写回答

1条回答 默认 最新

  • dongyue1988 2017-12-21 13:31
    关注

    YAML standard doesn't require quoting of all values, only when you want to use escape sequences or you are using certain characters.

    This library you are using adds "..." around the string only when it's necessary. For example if you used a colon in string (try: "3:0:0") it'll stay in double quotes.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 mysql sum函数优化
  • ¥15 求高通平台Softsim调试经验
  • ¥15 canal如何实现将mysql多张表(月表)采集入库到目标表中(一张表)?
  • ¥15 wpf ScrollViewer实现冻结左侧宽度w范围内的视图
  • ¥15 栅极驱动低侧烧毁MOSFET
  • ¥30 写segy数据时出错3
  • ¥100 linux下qt运行QCefView demo报错
  • ¥50 F1C100S下的红外解码IR_RX驱动问题
  • ¥20 基于matlab的航迹融合 航迹关联 航迹插补
  • ¥15 用Matlab实现图中的光线追迹