登录
首页 >  Golang >  Go问答

能否在 golang 的 http.Error 中返回 JSON 数据?

来源:stackoverflow

时间:2024-03-18 23:27:26 471浏览 收藏

在 Go 语言的 HTTP 库中,使用 `http.Error` 返回错误时无法直接返回 JSON 数据。这是因为 `http.Error` 只能返回纯文本错误信息,并且其内容类型被设置为 `text/plain`。

问题内容

调用http.error时能否返回json?

myObj := MyObj{
            MyVar: myVar}

        data, err := json.Marshal(myObj)
        if err != nil {
            http.Error(w, err.Error(), http.StatusInternalServerError)
            return 
        }
        w.Write(data)
        w.Header().Set("Content-Type", "application/json")

        http.Error(w, "some error happened", http.StatusInternalServerError)

我看到它返回 200 ,没有 json 但 json 嵌入在 text


解决方案


我发现阅读 go 源代码非常容易。如果您单击文档中的函数,您将转到 error 函数的源代码:https://golang.org/src/net/http/server.go?s=61907:61959#L2006

// error replies to the request with the specified error message and http code.
// it does not otherwise end the request; the caller should ensure no further
// writes are done to w.
// the error message should be plain text.
func error(w responsewriter, error string, code int) {
    w.header().set("content-type", "text/plain; charset=utf-8")
    w.header().set("x-content-type-options", "nosniff")
    w.writeheader(code)
    fmt.fprintln(w, error)
}

因此,如果您想返回 json,很容易编写自己的 error 函数。

func JSONError(w http.ResponseWriter, err interface{}, code int) {
    w.Header().Set("Content-Type", "application/json; charset=utf-8")
    w.Header().Set("X-Content-Type-Options", "nosniff")
    w.WriteHeader(code)
    json.NewEncoder(w).Encode(err)
}

以上就是《能否在 golang 的 http.Error 中返回 JSON 数据?》的详细内容,更多关于的资料请关注golang学习网公众号!

声明:本文转载于:stackoverflow 如有侵犯,请联系study_golang@163.com删除
相关阅读
更多>
最新阅读
更多>
课程推荐
更多>