package main
import "fmt"
import "gopkg.in/yaml.v3"
import "os"
import "errors"
import "io"
type Spec struct {
Name string `yaml:"name"`
}
func main() {
f, err := os.Open("spec.yaml")
if err != nil {
panic(err)
}
d := yaml.NewDecoder(f)
for {
// create new spec here
spec := new(Spec)
// pass a reference to spec reference
err := d.Decode(&spec)
// check it was parsed
if spec == nil {
continue
}
// break the loop in case of EOF
if errors.Is(err, io.EOF) {
break
}
if err != nil {
panic(err)
}
fmt.Printf("name is '%s'\n", spec.Name)
}
}
package main
import (
"bytes"
"fmt"
"io/ioutil"
"log"
"path/filepath"
"gopkg.in/yaml.v2"
)
type T struct {
A string
B struct {
RenamedC int `yaml:"c"`
D []int `yaml:",flow"`
}
}
func main() {
filename, _ := filepath.Abs("./example.yaml")
yamlFile, err := ioutil.ReadFile(filename)
if err != nil {
panic(err)
}
r := bytes.NewReader(yamlFile)
dec := yaml.NewDecoder(r)
var t T
for dec.Decode(&t) == nil {
fmt.Printf("a :%v\nb :%v\n", t.A, t.B)
}
}
3条答案
按热度按时间bprjcwpo1#
gopkg.in/yaml.v2和gopkg.in/yaml.v3之间的行为存在差异:
V2:https://play.golang.org/p/XScWhdPHukO V3:https://play.golang.org/p/OfFY4qH5wW2
这两种实现都产生了不正确的结果,恕我直言,但V3显然稍差。
有个变通办法如果你稍微改变接受答案中的代码,它就可以正确地工作,并且在两个版本的yaml包中以相同的方式工作:https://play.golang.org/p/r4ogBVcRLCb
rqcrx0a62#
当前的
gopkg.in/yaml.v3
Decoder
生成的结果非常正确,您只需要在为每个文档创建新结构时注意并检查它是否正确解析(使用nil
检查),并正确处理EOF
错误:测试文件
spec.yaml
:anauzrmj3#
我使用
gopkg.in/yaml.v2
找到的解决方案: