我在 POST 請(qǐng)求中發(fā)送 JSON 正文,但 http.DetectContentType 將其識(shí)別為文本/純文本類型。我希望能夠根據(jù)內(nèi)容類型靈活地處理請(qǐng)求有效負(fù)載 - if XML {} if JSON {} else {不處理}為了實(shí)現(xiàn)這種條件處理,我使用 http.DetectContentType 返回請(qǐng)求的內(nèi)容類型,但它在每個(gè)場(chǎng)景中都返回 text/plain。func Test(w http.ResponseWriter, r *http.Request) *ErrorObject { reqBuffer := make([]byte, 512) _, err := r.Body.Read(reqBuffer) if err != nil { return ErrorObject{}.New(1, err, nil)}contentType := GetContentType(reqBuffer)fmt.Printf(contentType) if contentType == "application/xml" || contentType == "text/xml" { w.Header().Set("Content-Type", "application/xml; charset=UTF-8") ...} if contentType == "application/json" || contentType == "text/json" { w.Header().Set("Content-Type", "application/json; charset=UTF-8") ... } else return Invalid Request Type error} func GetContentType(buffer []byte) string { fmt.Println(string(buffer)) contentType := http.DetectContentType(buffer) fmt.Printf(contentType) return contentType }期望返回函數(shù) - 內(nèi)容類型為 application/json 但獲取 text/plain使用 POSTMAN 將請(qǐng)求發(fā)送到服務(wù)器,Body 作為 raw 和 JSON { "data": [ { "group": "TEST", "name": "TEST", "released": true, "version": 1, "teststeps": [ { "bin": 32, "comment": "PAA", "dataType": "J", "format": "R6.2", "id": "PAA3", "osg": 8, "usg": 0 } ], "parameters": [ { "comment": "test", "description": "test", "format": "R7.0", "id": 1, "teststepId": "PAA", "value": 30, "type": "teststep" } ] } ] }
1 回答

浮云間
TA貢獻(xiàn)1829條經(jīng)驗(yàn) 獲得超4個(gè)贊
我正在使用 http.DetectContentType 返回請(qǐng)求的內(nèi)容類型,但它在每個(gè)場(chǎng)景中都返回 text/plain 。
application/json
您會(huì)發(fā)現(xiàn)它根本不關(guān)心或類似,并且它返回text/plain
任何看起來非二進(jìn)制的內(nèi)容(并且之前與 一樣不匹配text/html
)。
換句話說:這是不適合這項(xiàng)工作的工具。正確的方法是客戶端使用標(biāo)頭指定發(fā)送的內(nèi)容類型Content-Type
,而不是讓服務(wù)器猜測(cè)內(nèi)容類型。
- 1 回答
- 0 關(guān)注
- 285 瀏覽
添加回答
舉報(bào)
0/150
提交
取消