doudou3213 2019-06-19 18:31
浏览 125
已采纳

运行JSON Encode时是否可以排除已经为JSON的字段?

I am constructing a reply on a restAPI and using json.NewEncoder.Encode() to generate the JSON reply ( note : w is responsewriter).

u := Reply{Id: id, Status: "progress", Message: ""}
json.NewEncoder(w).Encode(u)

This works fine.

But I then have the other situation where Message will be populated with a string that is already in JSON format:

RetMessage := "{"debug": "on", "window": { "width": 500, "height": 500}}"
u := Reply{Id: id, Status: "progress", Message: RetMessage}
json.NewEncoder(w).Encode(u)

Then the reply will be the JSON with escaped quotations etc, which makes sense of course as it parses it as strings to JSON, but it of course breaks the concept as I would like the RetMessage to be passed on as it is, where the others I would like to be encoded to JSON.

Is there any way I can get around this in a smart way? The content in RetMessage is coming from a file so I can't change that the RetMessage sometimes do come as JSON encoded already.

  • 写回答

2条回答 默认 最新

  • duanchen7036 2019-06-19 19:17
    关注

    If Message is a complete, valid, JSON object, you can accomplish what you want by converting it to type json.RawMessage:

    type ReplyWithJSON struct {
        Id      int
        Status  string
        Message json.RawMessage
    }
    
    u := ReplyWithJSON{Id: id, Status: "progress", Message: json.RawMessage(RetMessage)}
    json.NewEncoder(w).Encode(u)
    

    This should generate the following output:

    {"Id":123,"Status":"progress","Message":{"debug":"on","window":{"width":500,"height":500}}}

    See it in action on the playground.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)

报告相同问题?

悬赏问题

  • ¥15 stm32开发clion时遇到的编译问题
  • ¥15 lna设计 源简并电感型共源放大器
  • ¥15 如何用Labview在myRIO上做LCD显示?(语言-开发语言)
  • ¥15 Vue3地图和异步函数使用
  • ¥15 C++ yoloV5改写遇到的问题
  • ¥20 win11修改中文用户名路径
  • ¥15 win2012磁盘空间不足,c盘正常,d盘无法写入
  • ¥15 用土力学知识进行土坡稳定性分析与挡土墙设计
  • ¥70 PlayWright在Java上连接CDP关联本地Chrome启动失败,貌似是Windows端口转发问题
  • ¥15 帮我写一个c++工程