Go标准库
fmt占位符
- https://github.com/polaris1119/The-Golang-Standard-Library-by-Example/blob/master/chapter01/01.3.md
- https://golang.org/pkg/fmt/
strconv数字转换
- strconv.Itoa (数字转换为字符串)
- strconv.Atoi (字符串转换为数字)
time
1 | timeStr := time.Now().Format("2006-01-02 15:04:05") |
json
- https://yar999.gitbooks.io/gopl-zh/content/ch4/ch4-05.html
Color成员的Tag还带了一个额外的omitempty选项,表示当Go语言结构体成员为空或零值时不生成JSON对象(这里false为零值)。
1