即使设置了结构标签也无法解析TOML文件

时间:2019-05-09 14:11:45

标签: go toml

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

go get github.com/BurntSushi/toml

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

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

cloud.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

1 个答案:

答案 0 :(得分:2)

您需要在结构中添加适当的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"`
}
相关问题