1
0
mirror of https://github.com/gogf/gf.git synced 2025-04-05 11:18:50 +08:00

Merge pull request #1795 from huangqian1985/master

add ExampleEncode function
This commit is contained in:
John Guo 2022-05-05 22:18:20 +08:00 committed by GitHub
commit cfd2636f13
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 21 additions and 0 deletions

View File

@ -186,6 +186,24 @@ func ExampleUnmarshal() {
// {Name:john Score:100}
}
func ExampleEncode() {
type BaseInfo struct {
Name string
Age int
}
info := BaseInfo{
Name: "John",
Age: 18,
}
infoData, _ := gjson.Encode(info)
fmt.Println(string(infoData))
// Output:
// {"Name":"John","Age":18}
}
func ExampleMustEncode() {
type BaseInfo struct {
Name string

View File

@ -37,10 +37,13 @@ func ExampleJson_SetViolenceCheck() {
if j, err := gjson.DecodeToJson(data); err != nil {
fmt.Println(err)
} else {
j.SetViolenceCheck(false)
fmt.Println("Users Count:", j.Get("users.count"))
j.SetViolenceCheck(true)
fmt.Println("Users Count:", j.Get("users.count"))
}
// Output:
// Users Count: 100
// Users Count: 101
}