-
Notifications
You must be signed in to change notification settings - Fork 0
/
json.go
41 lines (34 loc) · 807 Bytes
/
json.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
package gosocket
import (
"bytes"
"encoding/json"
)
func JSONEncode(v interface{}) string {
return string(JSONByteEncode(v))
}
func JSONDecode(jsonStr string, v interface{}) {
JSONByteDecode([]byte(jsonStr), v)
}
func JSONEncodeSafe(v interface{}) string {
return string(JSONByteEncodeSafe(v))
}
func JSONByteEncodeSafe(v interface{}) []byte {
b := JSONByteEncode(v)
b = bytes.Replace(b, []byte("\\u003c"), []byte("<"), -1)
b = bytes.Replace(b, []byte("\\u003e"), []byte(">"), -1)
b = bytes.Replace(b, []byte("\\u0026"), []byte("&"), -1)
return b
}
func JSONByteEncode(v interface{}) []byte {
b, err := json.Marshal(v)
if err != nil {
panic(err)
}
return b
}
func JSONByteDecode(jsonByte []byte, v interface{}) {
err := json.Unmarshal(jsonByte, v)
if err != nil {
panic(err)
}
}