[Go] golang http下返回json数据

Posted 陶士涵的菜地

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了[Go] golang http下返回json数据相关的知识,希望对你有一定的参考价值。

需求返回json格式编码的结构体 , 需要返回content-type 

返回不同的响应码

 

结构体的定义 ,因为可导出的结构体 ,必须大写,如果要小写 ,就得加这个别名

type JsonResult  struct{
    Code int `json:"code"`
    Msg  string `json:"msg"`
}

从post中获取到字段后 , 返回对应的结果 , 设置header必须在返回响应码之前调用

//验证接口
func check(w http.ResponseWriter, r *http.Request) {
    email := r.PostFormValue("email")
    server := r.PostFormValue("server")
    password := r.PostFormValue("password")
    msg, _ := json.Marshal(tools.JsonResult{Code: 400, Msg: "验证失败"})

    w.Header().Set("content-type","text/json")
    if email != "" && server != "" && password != "" {
        res := tools.CheckEmailPassword(server, email, password)
        if res {
            msg, _ = json.Marshal(tools.JsonResult{Code: 200, Msg: "验证成功"})
            w.Write(msg)
        } else {
            w.WriteHeader(400)
            w.Write(msg)
        }
    } else {
        w.WriteHeader(400)
        w.Write(msg)
    }
}

 

以上是关于[Go] golang http下返回json数据的主要内容,如果未能解决你的问题,请参考以下文章

golang 使用Go的net / http包对JSON进行编码和解码

golang json

golang restful 框架之 go-swagger

golang 快速解析api 返回的data数据

golang获取数据表转换为json通用方法

golang 玩Go!按下按钮可在播放和暂停之间切换。 #arduino #mocp#post-json