Giter Club home page Giter Club logo

Comments (1)

inhere avatar inhere commented on May 22, 2024 1

已经添加了,配置新的选项 config.ParseTime。下个版本发

config/issues_test.go

Lines 168 to 201 in 046bdd7

func TestIssues_81(t *testing.T) {
is := assert.New(t)
c := config.New("test").WithOptions(config.ParseTime, func(options *config.Options) {
options.DecoderConfig.TagName = "json"
})
err := c.LoadStrings(config.JSON, `
{
"key0": "abc",
"age": 12,
"connTime": "10s",
"idleTime": "1m"
}
`)
is.NoError(err)
type Options struct {
ConnTime time.Duration `json:"connTime"`
IdleTime time.Duration `json:"idleTime"`
}
opt := &Options{}
err = c.BindStruct("", opt)
is.NoError(err)
is.Equal("10s", c.String("connTime"))
wantTm, err := time.ParseDuration("10s")
is.NoError(err)
is.Equal(wantTm, opt.ConnTime)
is.Equal("1m", c.String("idleTime"))
wantTm, err = time.ParseDuration("1m")
is.NoError(err)
is.Equal(wantTm, opt.IdleTime)

from config.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.