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

add ExampleEncode function

This commit is contained in:
huangqian 2022-05-02 17:29:19 +08:00
parent 793e862e5a
commit 3628b1e9d2
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
}