- 博客(3)
- 收藏
- 关注
原创 golang判断星座
1.根据日期判断星座 func main() { t, _ := time.Parse("2006-01-02", "2001-01-19") fmt.Println(GetConstellation(t)) } func GetConstellation(t time.Time) string { gap := []int{20, 19, 21, 20, 21, 22, 23, 23, 23, 24, 23, 22} star := []string{"摩羯", "水瓶", "双鱼", "白羊"
2021-06-15 17:28:58
184
原创 golang 判断当前时间是第几周
func main() { l, _ := time.LoadLocation("Asia/Shanghai") startTime,_ := time.ParseInLocation("2006-01-02", "2018-12-22", l) endTime,_ := time.ParseInLocation("2006-01-02", "2019-05-17", l) datas...
2019-05-17 17:27:03
5592
2
翻译 golang redirect时设置cookie
golang redirect时设置cookie 参考 http://www.sohu.com/a/122147787_505779 上面作者说了原理,然后我贴一下自己写的代码 func setCookieTest() error { client := NewHttpClient() // golang http自动302跳转,但是不会在302时设置cookie // 所以如下代码...
2019-05-08 17:05:57
3373
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人