我在读取此类json时遇到问题。

["Msg",{"cmd":"ack","id":"B81DA375B6C4AA49D262","ack":2,"from":"18094158994@c.us","to":"18099897215@c.us","t":1555446115}]

我尝试了很多图书馆。
type SEND struct {
    Mgs string `json:"Msg"`
    //SEND MSG
}

type MSG struct {
    CMD  string `json:"cmd"`
    ID   string `json:"id"`
    ACK  int    `json:"ack"`
    FROM string `json:"from"`
    TO   string `json:"to"`
    T    int64  `json:"t"`
}

func main() {
    data := `["Msg",{"cmd":"ack","id":"B81DA375B6C4AA49D262","ack":2,"from":"18094158994@c.us","to":"18099897215@c.us","t":1555446115}] `
    var dd SEND
    err := json.Valid([]byte(data))
    fmt.Println("Is valid XML?->", err)
    json.Unmarshal([]byte(data), &dd)
    fmt.Println("1", dd)
    fmt.Println("2", dd.Mgs)

}

铝总是空的
和json是有效的
Is valid XML?-> true
1 {}
2 EMPTY

最佳答案

在这种情况下,您的json中具有stringobject的数组,因此您必须在golang端使用interface{},必须类似:

package main

import (
    "encoding/json"
    "fmt"
)

func main() {
    data := `["Msg",{"cmd":"ack","id":"B81DA375B6C4AA49D262","ack":2,"from":"18094158994@c.us","to":"18099897215@c.us","t":1555446115}] `
    var d []interface{}
    err := json.Unmarshal([]byte(data), &d)
    fmt.Printf("err: %v \n", err)
    fmt.Printf("d: %#v \n", d[0])
    fmt.Printf("d: %#v \n", d[1])
}

结果将如下所示:
err: <nil>
d: "Msg"
d: map[string]interface {}{"id":"B81DA375B6C4AA49D262", "ack":2, "from":"18094158994@c.us", "to":"18099897215@c.us", "t":1.555446115e+09, "cmd":"ack"}

因此, slice d中的第一个元素是字符串Msg
slice 中的第二个元素是map map[string]interface {}现在您可以对此 map 进行其他操作。

10-07 15:49
查看更多