取消轉義JSON 字串以進行解組
使用Sockjs 和Go 時,由於以下原因,在解析從JavaScript 客戶端發送的JSON 字串時可能會遇到問題逃跑。 JavaScript 用戶端可能會對字串進行轉義並將其作為 []byte 發送,從而導致解組困難。
要解決此問題,您可以使用 strconv.Unquote 函數來刪除 JSON 字串中的轉義。此函數接受字串作為參數並傳回未轉義的版本。
解:
import ( "encoding/json" "fmt" "strconv" ) // Code goes here. 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中文網其他相關文章!