data := struct { Body string `json:"body"` Type string `json:"type"` }{ Body: msg, Type: "chat", }
使用字典:
data = { "body":"msg", "type":"chat" }
使用类:
class Data: body = "msg" type = "chat"