gpt4 book ai didi

go - 即使在设置结构标签后也无法解析 TOML 文件

转载 作者:数据小太阳 更新时间:2023-10-29 03:46:56 28 4
gpt4 key购买 nike

我使用以下方式安装了依赖项:

go get github.com/BurntSushi/toml

我在与 main.go 相同的文件夹中创建了一个 toml 文件:

.
|-- cloud.toml
`-- main.go

云.toml

[database]
host = "localhost"
port = 8086
secure = false
username = "test"
password = "password"
dbName = "test"

main.go

package main

import (
"fmt"
"github.com/BurntSushi/toml"
)

type tomlConfig struct {
DB dbInfo
}

type dbInfo struct {
Host string `toml:"host"`
Port int `toml: "port"`
Secure bool `toml: "secure"`
Username string `toml: "username"`
Password string `toml: "password"`
DbName string `toml:"dbName"`
}

func main() {
var dbConfig tomlConfig

if _, err := toml.DecodeFile("cloud.toml", &dbConfig); err != nil {
fmt.Println(err)
return
}
fmt.Println("Database Configuration")
fmt.Printf("Host: %s\n", dbConfig.DB.Host)
fmt.Printf("Port: %d\n", dbConfig.DB.Port)


}

输出

go run main.go

Database Configuration
Host:
Port: 0

我在这里做错了什么?

我的 go env 是:

set GOARCH=amd64
set GOBIN=
set GOCACHE=C:\Users\des\AppData\Local\go-build
set GOEXE=.exe
set GOFLAGS=
set GOHOSTARCH=amd64
set GOHOSTOS=windows
set GOOS=windows
set GOPATH=C:\Users\des\go
set GOPROXY=
set GORACE=
set GOROOT=C:\Go
set GOTMPDIR=
set GOTOOLDIR=C:\Go\pkg\tool\windows_amd64
set GCCGO=gccgo
set CC=gcc
set CXX=g++
set CGO_ENABLED=1
set GOMOD=
set CGO_CFLAGS=-g -O2
set CGO_CPPFLAGS=
set CGO_CXXFLAGS=-g -O2
set CGO_FFLAGS=-g -O2
set CGO_LDFLAGS=-g -O2
set PKG_CONFIG=pkg-config
set GOGCCFLAGS=-m64 -mthreads -fno-caret-diagnostics -Qunused-arguments -fmessage-length=0 -fdebug-prefix-map=C:\Users\des\AppData\Local\Temp\go-build309995570=/tmp/go-build -gno-record-gcc-switches

最佳答案

您需要将适当的 toml 标记添加到您的结构中:

type tomlConfig struct {
DB dbInfo `toml:"database"`
}

您还应该从其他标签中删除空格,以使其有效:

type dbInfo struct {
Host string `toml:"host"`
Port int `toml:"port"`
Secure bool `toml:"secure"`
Username string `toml:"username"`
Password string `toml:"password"`
DbName string `toml:"dbName"`
}

关于go - 即使在设置结构标签后也无法解析 TOML 文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56061383/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com