为了账号安全,请及时绑定邮箱和手机立即绑定

两种方法的实现http请求

两种方法的实现http请求

Go
守候你守候我 2022-07-04 16:38:57
我有这个接口,我需要为两个调用实现,1.   req, err := http.NewRequest("GET", "http://example.com/healthz", nil)2. req, err := http.NewRequest("GET", "http://localhost:8082/rest/foos/9", nil) 但是接口使用的是reqof类型的*http.Request方法,我该怎么做呢?type HealthChecker interface {    Name() string    Check(req *http.Request) error}type ping struct{}func (p ping) Check(req *http.Request) error { }func (ping) Name() string {    return "check1"}https://play.golang.org/p/PvpKD-_MFRS
查看完整描述

1 回答

?
SMILET

TA贡献1796条经验 获得超4个赞

根据我的评论,不要使用interface.


一个简单的struct就足够了:


type HealthChecker struct {

    URL string

}


func (h HealthChecker) Check() error {

    resp, err := http.Get(h.URL)

    if err != nil {

        return err

    }

    defer resp.Body.Close()


    if resp.StatusCode != http.StatusOK {

        return fmt.Errorf("got http status %d instead of %d", resp.StatusCode, http.StatusOK)

    }


    return nil

}

要使用:


ex := HealthChecker{"http://example.com/healthz"}


log.Println(ex.URL, ex.Check()) // http://example.com/healthz got http status 404 instead of 200



g := HealthChecker{"http://google.com/"}


log.Println(g.URL, g.Check()) // http://google.com/ <nil>

https://play.golang.org/p/ktb2xX7DHKI


查看完整回答
反对 回复 2022-07-04
  • 1 回答
  • 0 关注
  • 117 浏览
慕课专栏
更多

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信