自己试着实现了框架但是发现无法获得Cookie

304158 · · 1328 次点击
func SetTempCookie(k , v string,w http.ResponseWriter){ cookie:=http.Cookie{Name: k, Value: v,Path:"/"} http.SetCookie(w,&cookie) } 解决了。原来是没有添加Path 所有只有在设置cookie控制器下实现
#1