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

Golang 导入(未定义:请求)

Golang 导入(未定义:请求)

Go
拉莫斯之舞 2021-10-04 17:14:03
我正在尝试创建一个自定义函数,结果将 Request 对象传回: func ConstructRequest(testParameters string, reqType string) Request {    req, err := http.NewRequest(reqType, testPath+testParameters, nil)    if err != nil {        log.Fatal(err)        return nil    } else {        return req    }}但我收到“未定义:请求”错误我不确定需要导入什么库才能使其工作?
查看完整描述

1 回答

?
慕无忌1623718

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

undefined: Request 如果您没有为返回的类型指定包,则似乎很正常:

func ConstructRequest(testParameters string, reqType string) http.Request
                                                             ^^^^

由于http.NewRequest()返回一个指针,这应该是:

func ConstructRequest(testParameters string, reqType string) *http.Request


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

添加回答

举报

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