duanmiexi2275 2016-11-22 16:38
浏览 92
已采纳

在Golang中将管道读取写入HTTP响应

Here is the schema :

Client sends a POST request to server A

server A process this and sends a GET to server B

server B sends a response through A to the client


I though the best idea was to make a pipe which would read the response of the GET, and write into the response of the POST, but I got many types problems.

func main() {
    r := mux.NewRouter()
    r.HandleFunc("/test/{hash}", testHandler)

    log.Fatal(http.ListenAndServe(":9095", r))
}

func handleErr(err error) {
    if err != nil {
        log.Fatalf("%s
", err)
    }
}


func testHandler(w http.ResponseWriter, r *http.Request){

    fmt.Println("FIRST REQUEST RECEIVED")
    vars := mux.Vars(r)
    hash := vars["hash"]
    read, write := io.Pipe()

    // writing without a reader will deadlock so write in a goroutine
    go func() {
        write, _ = http.Get("http://localhost:9090/test/" + hash)
        defer write.Close()
    }()

    w.Write(read)
}

When I run this I get the following error:

./ReverseProxy.go:61: cannot use read (type *io.PipeReader) as type []byte in argument to w.Write

Is there a way, to properly insert a io.PipeReader format into an http response? Or am I doing this in a totally wrong way?

  • 写回答

1条回答 默认 最新

  • duandie0921 2016-11-22 16:51
    关注

    You are not actually writing to it, you're replacing the pipe's write.

    Something along the lines of:

    func testHandler(w http.ResponseWriter, r *http.Request) {
    
        fmt.Println("FIRST REQUEST RECEIVED")
    
        vars := mux.Vars(r)
        hash := vars["hash"]
    
        read, write := io.Pipe()
    
        // writing without a reader will deadlock so write in a goroutine
        go func() {
            defer write.Close()
            resp, err := http.Get("http://localhost:9090/test/" + hash)
            if err != nil {
                return
            }
            defer resp.Body.Close()
            io.Copy(write, resp.Body)
    
        }()
    
        io.Copy(w, read)
    
    }
    

    Although, I agree with @JimB, for this instance, the pipe isn't even needed, something like this should be more efficient:

    func testHandler(w http.ResponseWriter, r *http.Request) {
        vars := mux.Vars(r)
        hash := vars["hash"]
    
        resp, err := http.Get("http://localhost:9090/test/" + hash)
        if err != nil {
            // handle error
            return
        }
        defer resp.Body.Close()
    
        io.Copy(w, resp.Body)
    }
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 安装svn网络有问题怎么办
  • ¥15 Python爬取指定微博话题下的内容,保存为txt
  • ¥15 vue2登录调用后端接口如何实现
  • ¥65 永磁型步进电机PID算法
  • ¥15 sqlite 附加(attach database)加密数据库时,返回26是什么原因呢?
  • ¥88 找成都本地经验丰富懂小程序开发的技术大咖
  • ¥15 如何处理复杂数据表格的除法运算
  • ¥15 如何用stc8h1k08的片子做485数据透传的功能?(关键词-串口)
  • ¥15 有兄弟姐妹会用word插图功能制作类似citespace的图片吗?
  • ¥15 latex怎么处理论文引理引用参考文献