我正在尝试发送/接收自定义JSON消息。 JSON结构在3种情况下发生变化,因此我有3种不同的结构。我必须访问作为RawMessage发送的房间字符串。我的问题是广播频道应该是哪种类型?
type Message struct {
Type int64 `json:"type"`
Msg json.RawMessage
}
Broadcast chan interface{} // ??? RawMessage or maybe interface
case m := <-r.Broadcast:
// What type should chan Broadcast be?
// If m is of type json.RawMessage should I deal with unmarshalling here?
connections := r.Clients[m.Room] //
for c := range connections {
select {
case c.send <- m:
default:
close(c.send)
delete(connections, c)
if len(connections) == 0 {
delete(r.Clients, m.Room)
}
}
}
for {
msg := &Message{}
err := c.conn.ReadJSON(&msg)
// _, msg, err := c.conn.ReadMessage()
if err != nil {
if websocket.IsUnexpectedCloseError(err, websocket.CloseGoingAway, websocket.CloseAbnormalClosure) {
log.Printf("error: %v", err)
}
break
}
if msg.Type == 0 {
newVideo := &NewVideo{}
if err = json.Unmarshal(msg.Msg, &newVideo); err != nil {
fmt.Println(err)
}
Roomb.Broadcast <- msg.Msg // ??? should i send the RawMessage
online[msg.Room] = msg
} else if msg.Type == 1 {
if _, ok := online[msg.Room]; ok {
online[msg.Room].Start = float64(time.Now().Unix() - online[msg.Room].Timestamp)
c.send <- online[msg.Room]
}
} else if msg.Type == 2 {
Roomb.Broadcast <- msg.Msg // ??? should i send the RawMessage
}
fmt.Println(msg)
}
答案 0 :(得分:0)
删除msg
之前的“&”。 msg
已经是一个指针。这可能会造成问题。
您的问题不是很清楚。如果msg.Type
定义了msg.Msg
是什么,那么我建议您使用实际的消息类型来键入通道,解析msg.Msg
,然后通过通道发送。