当前时间 + 常规格式化,引用 “time”
ts := time.Now().Format("2006-01-02 15:04:05.000") // 2017-10-26 17:32:57.871
字符串转时间
tx := time.Parse("2006-01-02 15:04:05.000","2017-10-26 18:02:01.234")//fmt.Println( tx.Nanosecond() )=234000000
数值转换字符串
strconv.Itoa(5) //转int一类
strconv.FormatFloat(254.109,'f',-1,64) //转浮点数一类
字符串转数字
strconv.ParseFloat(s string,bitSize int)(f float64,err error)
strconv.Atoi(s string) (i int,err error)
类型断言(类型判断) x 是 接口 interface() v,ok:=x.([]int) // x.(uint),x.(float64) 等等 if ok{ ... }
原文链接:https://www.f2er.com/go/187792.html