我正在POST请求中发送JSON正文,但是http.DetectContentType将其标识为文本/纯文本类型。
我希望能够灵活地根据请求的内容类型处理请求有效负载-如果是XML {}如果是JSON {}否则是{否处理}
为实现此条件处理,我使用http.DetectContentType返回请求的内容类型,但在每种情况下都将返回文本/纯文本。
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
}
期望返回函数-内容类型为application / json但获取文本/纯文本
使用POSTMAN将请求作为正文发送给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"
}
]
}
]
}
答案 0 :(得分:4)
我正在使用http.DetectContentType返回请求的内容类型,但在每种情况下都将返回文本/纯文本。
根据documentation DetectContentType
” ...实现在https://mimesniff.spec.whatwg.org/中描述的算法,以确定给定数据的Content-Type”。。那里的算法主要用于处理浏览器可以自行处理的内容类型。
如果您查看at the actual code,将会发现它根本不关心application/json
或类似内容,并且会为看起来非二进制的任何内容返回text/plain
(并且与text/html
之前没有匹配。)
换句话说:这是工作的错误工具。正确的方法是让客户端使用Content-Type
标头指定发送哪种内容,而不要让服务器猜测内容的类型。