douwen2072 2015-12-15 14:40
浏览 671
已采纳

在golang中将字符串转换为json,反之亦然?

In my app, I receive a json from the client. This json can be anything since the user defines the keys and the values. In the backend I store it as string in the datastore.

Now i'm trying to override the MarshalJson / UnmarshalJson functions so that what I send / receive from the client is not a string but a json.

I can't figure out how to convert a string to json in go.

my structure

type ContextData string
type Iot struct {
Id              IotId       `json:"id,string" datastore:"-" goon:"id"`
Name            string   `json:"name"`
Context         ContextData  `json:"context" datastore:",noindex"` }

example of received data

{ 'id' : '',
  'name' '',
  'context': {
           'key1': value1,
           'key2': value2 }}

how i want to store this Context field in the datastore as a noindex string '{'key1':value1, 'key2':value2}' example of data i want to send

{ 'id' : '',
  'name' '',
  'context': {
           'key1': value1,
           'key2': value2 }}
  • 写回答

3条回答 默认 最新

  • dop2144 2015-12-15 17:25
    关注

    If I understand your problem correctly, you want to use json.RawMessage as Context.

    RawMessage is a raw encoded JSON object. It implements Marshaler and Unmarshaler and can be used to delay JSON decoding or precompute a JSON encoding.

    RawMessage is just []byte, so you can keep it in data store and then attach it for an outgoing messages as "precomputed JSON".

    type Iot struct {
        Id      int             `json:"id"`
        Name    string          `json:"name"`
        Context json.RawMessage `json:"context"` // RawMessage here! (not a string)
    }
    
    func main() {
        in := []byte(`{"id":1,"name":"test","context":{"key1":"value1","key2":2}}`)
    
        var iot Iot
        err := json.Unmarshal(in, &iot)
        if err != nil {
            panic(err)
        }
    
        // Context is []byte, so you can keep it as string in DB
        fmt.Println("ctx:", string(iot.Context))
    
        // Marshal back to json (as original)
        out, _ := json.Marshal(&iot)
        fmt.Println(string(out))
    }
    

    https://play.golang.org/p/69n0B2PNRv

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

报告相同问题?

悬赏问题

  • ¥100 求数学坐标画圆以及直线的算法
  • ¥35 平滑拟合曲线该如何生成
  • ¥100 c语言,请帮蒟蒻写一个题的范例作参考
  • ¥15 名为“Product”的列已属于此 DataTable
  • ¥15 安卓adb backup备份应用数据失败
  • ¥15 eclipse运行项目时遇到的问题
  • ¥15 关于#c##的问题:最近需要用CAT工具Trados进行一些开发
  • ¥15 南大pa1 小游戏没有界面,并且报了如下错误,尝试过换显卡驱动,但是好像不行
  • ¥15 自己瞎改改,结果现在又运行不了了
  • ¥15 链式存储应该如何解决