gpt4 book ai didi

datetime - foo.Seconds()(类型为time.Duration)错误-无法将'd.Step.Seconds()'(类型为float64)用作time.Duration类型

转载 作者:行者123 更新时间:2023-12-01 22:34:01 32 4
gpt4 key购买 nike

我仍然很新...所以,

我的问题的症结可以概括为:我正在准备将数据发送到远程API,这要求此字段为time.Duration类型,而我试图将其作为秒类型的字符串类型###s发送,并且time.ParseDuration()到秒,但这是一个错误。

type Duration struct {
Duration time.Duration
Step time.Duration
}

// Needs to return a structure containing a duration formatted
// item and an item which is strictly in `seconds` format IE
// `int` or `float` `+` `"s"`.
func getDuration(pr *PromRequest) (Duration, error) {
duration, err := time.ParseDuration(pr.TimeRange)
if err != nil {
return Duration{}, nil
}

timeValue, err := strconv.Atoi(pr.TimeRange[:len(pr.TimeRange)-1])
if err != nil {
return Duration{}, err
}

// convert day value to day in hours
step := time.Duration(int64(24*timeValue) * 60 / 14)

return Duration{
Duration: duration,
Step: step, // <-- should be a time.Duration type...
}, nil
}

// \/\/hatever
func getMetricsWithRange(pr *PromRequest) (model.Value, error) {
d, err := getDuration(pr)
if err != nil {
e := fmt.Errorf("unable to translate received time into proper parsed time signature: %s", err)
fmt.Println(e)
return nil, err
}

...
r := v1.Range{
Start: time.Now().Add(-d.Duration),
End: time.Now(),
Step: d.Step.Seconds(), // <-- error lands here stating it's a float64
}
...
}


**编辑**

所以我想我现在明白我的误解。 time.Duration()返回一个time.Duration类型,然后可以通过 .Seconds()发送,该类型将返回 float64

在使用返回的结构的调用方中,当我打印实例变量的值时,它将不是 time.Duration。我需要它以 time.Duration的形式作为 ###s类型在几秒钟内,我知道 time.Duration不会做。对其调用 .Seconds()失败,错误为 Cannot use 'd.Step.Seconds()' (type float64) as type time.Duration
好的,所以我的误解来自几个因素。一:我真的很累。二:我刚接触静态语言。三:我认为我需要在几秒钟内发送 v1.Range.Step,这是错误的。我看了一下将 time.Duration值转换成秒数的接收代码。

现在,此问题的大部分来自这样一个事实,即我的前端代码正在使用字符串中的字母 d在几天内发送一个值。 time.ParseDuration()不能处理 d天,因此我不使用 days,而只是以秒为单位传递时间值。

事实证明,解决此问题的最简单方法是简单地从前端发送 seconds。我一直无法使go代码正常工作。

最佳答案

Duration.Seconds()返回一个float64值,因为持续时间值可能不是一整秒,并且可能有十进制数字来表示确切的持续时间。如果Step变量的持续时间四舍五入到最接近的秒数,请使用Duration.Round(time.Second):

...
Step: Step.Round(time.Second)

这将使您将持续时间四舍五入到一整秒。

如果要获取秒值,则不是持续时间,而只是整数:
...
Step: int(Step.Seconds())

但是,在这种情况下,生成的 Step不是持续时间,而只是一个给出秒数的int值。

关于datetime - foo.Seconds()(类型为time.Duration)错误-无法将'd.Step.Seconds()'(类型为float64)用作time.Duration类型,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/61982032/

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