1. 程式人生 > >Golang json字串校驗

Golang json字串校驗

golang  json字串有效性校驗

import "github.com/ChengjinWu/gojson"


func Test_Validator(t *testing.T) {
	data := `{"id":524042,"name":"酷旅-mob-otv-2","male":true,"other":null}`
	err := gojson.CheckValid([]byte(data))
	if err != nil {
		fmt.Println(err)
	}
}
github程式碼庫