登录
首页 >  Golang >  Go问答

如何检查错误是否是“超出期限”错误?

来源:Golang技术栈

时间:2023-05-01 16:43:58 491浏览 收藏

Golang小白一枚,正在不断学习积累知识,现将学习到的知识记录一下,也是将我的所得分享给大家!而今天这篇文章《如何检查错误是否是“超出期限”错误?》带大家来了解一下如何检查错误是否是“超出期限”错误?,希望对大家的知识积累有所帮助,从而弥补自己的不足,助力实战开发!


问题内容

我正在发送一个带有指定 10 秒超时的上下文的请求:

ctx, cancel := context.WithTimeout(context.Background(), time.Second * 10)
defer cancel()
_, err := client.SendRequest(ctx)
if err != nil {
    return 0, err
}

现在,当我遇到超时时,错误消息令人困惑:

超出上下文最后期限

是否可以检查错误是否是超时错误,以便我可以打印更好的错误消息?

ctx, cancel := context.WithTimeout(context.Background(), time.Second * 10)
defer cancel()
_, err := client.SendRequest(ctx)
if err != nil {
    if isTimeoutError(err) {
       return nil, fmt.Errorf("the request is timeout after 10 seconds") 
    }
    return nil, err
}

如何实现这样的isTimeoutError功能?

正确答案

在 Go 1.13+ 中最简洁的方法是使用新errors.Is函数。

// Create a context with a very short timeout
ctx, cancel := context.WithTimeout(context.Background(), time.Millisecond)
defer cancel()

// Create the request with it
r, _ := http.NewRequest("GET", "http://example.com", nil)
r = r.WithContext(ctx)

// Do it, it will fail because the request will take longer than 1ms
_, err := http.DefaultClient.Do(r)
log.Println(err) // Get http://example.com: context deadline exceeded

// This prints false, because the http client wraps the context.DeadlineExceeded
// error into another one with extra information.
log.Println(err == context.DeadlineExceeded)

// This prints true, because errors.Is checks all the errors in the wrap chain,
// and returns true if any of them matches.
log.Println(errors.Is(err, context.DeadlineExceeded))

理论要掌握,实操不能落!以上关于《如何检查错误是否是“超出期限”错误?》的详细介绍,大家都掌握了吧!如果想要继续提升自己的能力,那么就来关注golang学习网公众号吧!

声明:本文转载于:Golang技术栈 如有侵犯,请联系study_golang@163.com删除
相关阅读
更多>
最新阅读
更多>
课程推荐
更多>