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:
commit
cfd2636f13
@ -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
|
||||
|
@ -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
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user