注意:仅作为学习参考,并没有完整实现所有类型
type User struct {
Name string
Age int
Sex byte `json:"sex"`
}
type Book struct {
ISBN string `json:"isbn"`
Name string
Price ...
# 如何读写json数据
import json
l = [1, 2, 'abc', {'name': 'Bob', 'age': 13}]
print(json.dumps(l))
d = {'b': None, 'a': 5, 'c': 'abc'}
print(json.dumps(d))
# 压缩字符串长度,去掉空格
print(json.dumps(d, ...
JSON
Go语言内置的encoding/json 标准库
插件:github.com/pquerna/ffjson
JSON编码:func Marshal(v interface{}) ([]byte, error)
JSON解码:func Unmarshal(data []byte, v interface{}) error
[codesyntax lang="c"]...