自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(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 149

原创 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 5483 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 3218

空空如也

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除