728x90
javascript에서
1. cookie로
document.cookie = "cookieuser=cookieus;bb=cc";
2. localstorage로
localStorage.LLL = "ABCD";
두 가지로 set을 했을 때
go lang의 echo에서 받는 법
func CallLoginInfo(c echo.Context){
tk, cookeierr := c.Request().Cookie("cookieuser")
if cookeierr != nil {
fmt.Println(cookeierr)
}
tokenStr := tk.Value
fmt.Println(tokenStr)
}
result2, ook := store.Get("LLL")
if !ook {
fmt.Println("store.Get LLL")
}
fmt.Println(result2)
728x90