1. 首页
  2. 数据库
  3. 其它
  4. Golang Cookie和Token的使用

Golang Cookie和Token的使用

上传者: 2021-02-23 16:40:35上传 PDF文件 20.91KB 热度 10次
func GetXXX(ctx *gin.Context){ uri:= http://xxxx.com client := &http.Client{} fmt.Println(uri) req:= GetInfo(uri) resp, err := client.Do(req) if err != nil { fmt.Println(访问接口出错) } body := resp.Body defer body.Close() //将接口传回的数据直接返回给前端 io.Copy(ctx.Writer, body) } func GetInfo(url st
用户评论