首頁 >後端開發 >Golang >如何將 YAML 解組到具有未匯出欄位的 Go 結構中?

如何將 YAML 解組到具有未匯出欄位的 Go 結構中?

Patricia Arquette
Patricia Arquette原創
2024-12-08 03:47:08365瀏覽

How to Unmarshal YAML into a Go struct with unexported fields?

將 YAML 解組為 struct

程式碼中出現的問題是結構體欄位未匯出。要匯出它們,請在欄位名稱的開頭使用大寫字母,如下所示:

type Config struct {<pre class="brush:php;toolbar:false">FooBar string `yaml:"foo_bar"`

}

;

程式碼現在將成功將YAML 資料解組到Config 結構中。

以上是如何將 YAML 解組到具有未匯出欄位的 Go 結構中?的詳細內容。更多資訊請關注PHP中文網其他相關文章!

陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn