栏目分类:
子分类:
返回
名师互学网用户登录
快速导航关闭
当前搜索
当前分类
子分类
实用工具
热门搜索
名师互学网 > IT > 面试经验 > 面试问答

有没有办法在golang中格式化此json?

面试问答 更新时间: 发布时间: IT归档 最新发布 模块sitemap 名妆网 法律咨询 聚返吧 英语巴士网 伯小乐 网商动力

有没有办法在golang中格式化此json?

没有必要将 尸体尸体
分开编组

HttpResp
。而是将
Body
字段的类型更改为
interface{}
,然后将该字段设置为与json字符串相对的具体类型的任何值,例如
[]Article
,然后将resp编组一次。

type HttpResp struct{    Status      int         `json:"status"`    Description string      `json:"description"`    Body        interface{} `json:"body"`}

其余的…

package mainimport (    "encoding/json"    "net/http"    "log")type Article struct{    Id          string  `json:"id"`    Title       string  `json:"title"`    Body        string  `json:"body"`    Description string  `json:"description"`}func AllArticles(w http.ResponseWriter, r *http.Request){    log.Print("/articles - GET")    db := connect()    defer db.Close()    var articles []Article    results, err := db.Query("SELECt * FROM Articles")    if err != nil{        log.Print(err)        return    }    for results.Next(){        var article Article        err = results.Scan(&article.Title, &article.Description, &article.Body, &article.Id)        if err != nil{ serr, _ := json.Marshal(err) json.NewEnprer(w).Enpre(HttpResp{Status: 500, Description: "Failed to retrieve all articles", Body: string(serr)})        }        articles = append(articles, article)    }    w.Header().Set("Content-Type", "application/json")    json.NewEnprer(w).Enpre(HttpResp{Status: 200, Body: articles})}


转载请注明:文章转载自 www.mshxw.com
本文地址:https://www.mshxw.com/it/382507.html
我们一直用心在做
关于我们 文章归档 网站地图 联系我们

版权所有 (c)2021-2022 MSHXW.COM

ICP备案号:晋ICP备2021003244-6号