1

有没有办法用hcl/v2解码自定义类型?我正在寻找与encoding/json.Unmarshaler. 我已经尝试实施encoding.TextUnmarshaler哪个不起作用。

这是一个示例用例。

type Duration struct {
   time.Duration
}

func (d *Duration) UnmarshalText(data []byte) error {
    d0, err := time.ParseDuration(string(data))
    if err != nil {
        return err
    }
    d.Duration = d0
    return nil
}

注意:我使用的是 v2

4

1 回答 1

0

https://pkg.go.dev/github.com/hashicorp/hcl/v2@v2.5.0/hclsimple?tab=doc#example-package-NativeSyntax

应该是你需要的。

取自文档:

type Config struct {
    Foo string `hcl:"foo"`
    Baz string `hcl:"baz"`
}

const exampleConfig = `
    foo = "bar"
    baz = "boop"
    `

var config Config
err := hclsimple.Decode(
    "example.hcl", []byte(exampleConfig),
    nil, &config,
)
if err != nil {
    log.Fatalf("Failed to load configuration: %s", err)
}
fmt.Printf("Configuration is %v\n", config)
于 2020-05-07T07:11:52.903 回答