我不确定这是一个错误还是http响应包应该如何工作.
原文链接:https://www.f2er.com/go/186862.html在此示例中,不会设置Content-Type响应标头
// Return the response w.WriteHeader(http.StatusCreated) w.Header().Set("Content-Type","application/json") w.Write(js)
但是,如果我按顺序设置标题的顺序,它确实有效:
// Return the response w.Header().Set("Content-Type","application/json") w.WriteHeader(http.StatusCreated) w.Write(js)
现在这将实际设置标题为application / json.这种行为是有意的吗?