douwen2072 2019-05-09 14:11
浏览 103
已采纳

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

I installed dependency using:

go get github.com/BurntSushi/toml

I created a toml file in the same folder as my main.go:

.
|-- 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
", dbConfig.DB.Host)
    fmt.Printf("Port: %d
", dbConfig.DB.Port)


}

Output

go run main.go

Database Configuration
Host:
Port: 0

What am I doing wrong here?

my go env is:

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条回答 默认 最新

  • duannaikuang1301 2019-05-09 14:15
    关注

    You need to add the appropriate toml tag to your struct:

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

    You should also remove the spaces from your other tags, to make them valid:

    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"`
    }
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 用verilog实现tanh函数和softplus函数
  • ¥15 求京东批量付款能替代天诚
  • ¥15 slaris 系统断电后,重新开机后一直自动重启
  • ¥15 谁能帮我看看这拒稿理由啥意思啊阿啊
  • ¥15 关于vue2中methods使用call修改this指向的问题
  • ¥15 idea自动补全键位冲突
  • ¥15 请教一下写代码,代码好难
  • ¥15 iis10中如何阻止别人网站重定向到我的网站
  • ¥15 滑块验证码移动速度不一致问题
  • ¥15 Utunbu中vscode下cern root工作台中写的程序root的头文件无法包含