go 處理 jsonArray 無 key 的 JSON 串

King_Chin發表於2019-11-27
    import  (
        "encoding/json"
    )

    // 接收引數 模擬引數[1,2]
    jsonArray := v.GetString("json")
    // 變數初始化
    var arr []interface{}
    jsonByte := []byte(jsonArray)
    // json處理
    err := json.Unmarshal(jsonByte, &arr)
    if err !=  nil {
        panic(err.Error())
    }
    this.Data["json"] = arr
    this.ServeJSON()
    this.StopRun()
本作品採用《CC 協議》,轉載必須註明作者和本文連結
Chiin

相關文章