(继续)如何使用toml文件?
作为标题,我想知道如何使用golang中的toml文件。
在此之前,我展示了我的toml示例。这样对吗?
[datatitle]enable = true
userids = [
"12345", "67890"
]
[datatitle.12345]
prop1 = 30
prop2 = 10
[datatitle.67890]
prop1 = 30
prop2 = 10
然后,我想将这些数据设置为struct类型。
因此,我想按如下方式访问子元素。
datatitle["12345"].prop1datatitle["67890"].prop2
提前致谢!
回答:
首先获取BurntSushi的toml解析器:
go get github.com/BurntSushi/toml
BurntSushi解析toml并将其映射到结构,这就是您想要的。
然后执行以下示例并从中学习:
package mainimport (
"github.com/BurntSushi/toml"
"log"
)
var tomlData = `title = "config"
[feature1]
enable = true
userids = [
"12345", "67890"
]
[feature2]
enable = false`
type feature1 struct {
Enable bool
Userids []string
}
type feature2 struct {
Enable bool
}
type tomlConfig struct {
Title string
F1 feature1 `toml:"feature1"`
F2 feature2 `toml:"feature2"`
}
func main() {
var conf tomlConfig
if _, err := toml.Decode(tomlData, &conf); err != nil {
log.Fatal(err)
}
log.Printf("title: %s", conf.Title)
log.Printf("Feature 1: %#v", conf.F1)
log.Printf("Feature 2: %#v", conf.F2)
}
请注意tomlData
和及其如何映射到该tomlConfig
结构。
在https://github.com/BurntSushi/toml中查看更多示例
以上是 (继续)如何使用toml文件? 的全部内容, 来源链接: utcz.com/qa/433290.html