golang http client.Do(req)無法二次使用

來源:互聯網
上載者:User

初始化client,以及request竟然無法調用第二次,奇了八怪。

沒怎麼深入閱讀源碼,但是知道問題出在哪了。

首先代碼長這樣:

resp, err := client.Do(req)resp, err := client.Do(req)

本來想著過一段時間重新整理一下資料,來看看資料有什麼變化,所以就想著能複用req,但是沒想到報錯:

: http: ContentLength=15 with Body length 0

這是為什麼呢。深入調查了一下,先看下req長啥樣

req, err = http.NewRequest("POST", "some url", strings.NewReader("articleId="+articleId))

其中第三個參數就是body,
req.Body長這樣:

type Reader struct {    s        string    i        int64 // current reading index    prevRune int   // index of previous rune; or < 0}

看到這就突然明白了,client.Do方法在讀取body資料時會根據Reader中的i值進行讀取,即調用其Read方法,i值都會改變,當然讀取完,i值也就變成contentLength。那麼下次再進行使用的時候,因為讀取不出任何資料,導致如上錯誤 Body length 0

這種情況應該怎麼解決呢。

。。。

new一個新的Reader...

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.