在Go 中使用SockJS 時,將從JavaScript 用戶端發送的JSON 資料解析為位元組切片可能會很麻煩。伺服器收到轉義的 JSON,但嘗試將其解析為普通字串,導致錯誤“json: Cannot unmarshal string into Go value of type main.Msg”。
解決方案在於利用 strconv .在嘗試解組 JSON 之前取消引用函數。此函數刪除轉義字符,留下一個可以解析為 Go 值的字串。
這是一個修改後的範例:
package main import ( "encoding/json" "fmt" "strconv" ) type Msg struct { Channel string Name string Msg string } func main() { var msg Msg var val []byte = []byte(`"{\"channel\":\"buu\",\"name\":\"john\", \"msg\":\"doe\"}"`) s, _ := strconv.Unquote(string(val)) err := json.Unmarshal([]byte(s), &msg) fmt.Println(s) fmt.Println(err) fmt.Println(msg.Channel, msg.Name, msg.Msg) }
輸出:
{"channel":"buu","name":"john", "msg":"doe"} <nil> buu john doe
以上是如何在 Go 中解組轉義 JSON 字串?的詳細內容。更多資訊請關注PHP中文網其他相關文章!