1 Star 0 Fork 0

trako/gentleman

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
error.go 1.48 KB
一键复制 编辑 原始数据 按行查看 历史
trako 提交于 2024-03-14 16:53 . fix包错误导入
package main
import (
"errors"
"fmt"
"gitee.com/trako/gentleman/context"
"gitee.com/trako/gentleman/plugins/headers"
)
func main() {
// Create a new client
cli := gentleman.New()
// Define a custom header
cli.Use(headers.Set("Token", "s3cr3t"))
// Declare first error phase middleware handler
cli.UseError(func(ctx *context.Context, h context.Handler) {
fmt.Printf("1) Handling error: %s\n", ctx.Error)
h.Next(ctx)
})
// Declare second error phase middleware handler
cli.UseError(func(ctx *context.Context, h context.Handler) {
fmt.Printf("2) Handling error: %s\n", ctx.Error)
// Overwrite error with wrapped message
ctx.Error = errors.New("wrapped error: " + ctx.Error.Error())
h.Next(ctx)
})
// Attach a phase-specific middleware function.
cli.UseHandler("after dial", func(ctx *context.Context, h context.Handler) {
ctx.Error = errors.New("simulated error")
h.Next(ctx)
})
// Perform the request
req := cli.Request()
// Declare request-level error phase middleware handler
req.UseError(func(ctx *context.Context, h context.Handler) {
fmt.Printf("3) Handling request-level error: %s\n", ctx.Error)
h.Next(ctx)
})
res, err := req.URL("http://httpbin.org/ip").Send()
if err != nil {
fmt.Printf("Request error: %s\n", err)
return
}
if !res.Ok {
fmt.Printf("Invalid server response: %d\n", res.StatusCode)
return
}
fmt.Printf("Status: %d\n", res.StatusCode)
fmt.Printf("Header: %s\n", res.Header.Get("Server"))
fmt.Printf("Body: %s", res.String())
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Go
1
https://gitee.com/trako/gentleman.git
git@gitee.com:trako/gentleman.git
trako
gentleman
gentleman
v2.1.1

搜索帮助