1. ホーム
  2. json

[解決済み] GoでJSONを部分的にマップにアンマーシャルする

2022-06-16 08:51:07

質問

私のウェブソケットサーバーは、JSONデータを受信してアンマーシャルします。このデータは常に、キー/値ペアを持つオブジェクトにラップされます。キー文字列は値の識別子として機能し、Go サーバーにそれがどのような値であるかを知らせます。どのような種類の値であるかを知ることによって、私はその値を正しい種類の構造体に JSON アンマーシャルすることができます。

各json-objectは複数のキーと値のペアを含むかもしれません。

JSONの例です。

{
    "sendMsg":{"user":"ANisus","msg":"Trying to send a message"},
    "say":"Hello"
}

を使った簡単な方法はないでしょうか? "encoding/json" パッケージを使って簡単にできる方法はありますか?

package main

import (
    "encoding/json"
    "fmt"
)

// the struct for the value of a "sendMsg"-command
type sendMsg struct {
    user string
    msg  string
}
// The type for the value of a "say"-command
type say string

func main(){
    data := []byte(`{"sendMsg":{"user":"ANisus","msg":"Trying to send a message"},"say":"Hello"}`)

    // This won't work because json.MapObject([]byte) doesn't exist
    objmap, err := json.MapObject(data)

    // This is what I wish the objmap to contain
    //var objmap = map[string][]byte {
    //  "sendMsg": []byte(`{"user":"ANisus","msg":"Trying to send a message"}`),
    //  "say": []byte(`"hello"`),
    //}
    fmt.Printf("%v", objmap)
}

どんな種類の提案/助けにも感謝します!

どのように解決するのですか?

これは、アンマーシャリングで map[string]json.RawMessage .

var objmap map[string]json.RawMessage
err := json.Unmarshal(data, &objmap)

さらに解析するために sendMsg を解析するには、次のような方法があります。

var s sendMsg
err = json.Unmarshal(objmap["sendMsg"], &s)

については say についても、同じように文字列にアンマーシャルすることができます。

var str string
err = json.Unmarshal(objmap["say"], &str)


EDITです。 正しくアンマーシャルするために、sendMsg構造体の変数をエクスポートする必要があることに留意してください。構造体の定義は次のようになります。

type sendMsg struct {
    User string
    Msg  string
}

https://play.golang.org/p/OrIjvqIsi4-