私のWebSocketサーバーはJSONデータを受信して非整列化します。このデータは、常にキーと値のペアを持つオブジェクトにラップされます。キー文字列は値の識別子として機能し、Goサーバーにそれがどのような値であるかを伝えます。値のタイプを知ることで、値を正しいタイプの構造体に非整列化するJSONに進むことができます。
各jsonオブジェクトには、複数のキーと値のペアが含まれる場合があります。
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)
}
あらゆる提案/助けをありがとう!
RawMessage
。まさに私が必要としたもの。についてsay
はjson.RawMessage
、文字列がまだデコードされていない(ラッピング"
やエスケープされた文字\n
など)ため、実際にはとしても必要です。そのため、マーシャリングを解除します。