为了账号安全,请及时绑定邮箱和手机立即绑定

Yaml 数组的字符串到 golang 结构字段

Yaml 数组的字符串到 golang 结构字段

Go
LEATH 2022-09-05 11:02:14
我正在尝试映射死的简单yaml配置文件,以使用此软件包进行结构,但没有成功。config.yamlDrivers:   - "/Volumes/V1"  - "/Volumes/V2"去type Iconfig struct {    Drivers []string `yaml:"Drivers,flow"`}iconfig := Iconfig{}uerr := yaml.UnmarshalStrict(config_yaml, iconfig)uerr:panic: reflect: reflect.Value.Set using unaddressable value [recovered]        panic: reflect: reflect.Value.Set using unaddressable valuefmt.Println(string(config_yaml)):Drivers:   - "/Volumes/V1"  - "/Volumes/V2"为什么“/Volumes/V1”被认为是不可寻址的值?
查看完整描述

1 回答

?
慕无忌1623718

TA贡献1744条经验 获得超4个赞

尝试将你的行更改为:

uerr := yaml.UnmarshalStrict(config_yaml, &iconfig)


查看完整回答
反对 回复 2022-09-05
  • 1 回答
  • 0 关注
  • 140 浏览
慕课专栏
更多

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信