运行遇到./main.go:190:11: undefined: "github.com/gin-contrib/sessions".NewCookieStore
Closed this issue · 6 comments
shaonibuke commented
运行遇到./main.go:190:11: undefined: "github.com/gin-contrib/sessions".NewCookieStore 重新安装github.com/gin-contrib/sessions还是无法解决
balanceM commented
查看sessions文档,sessions的使用方法已经改变。 不再有NewCookieStore方法
BerryXiong commented
运行遇到./main.go:190:11: undefined: "github.com/gin-contrib/sessions".NewCookieStore 重新安装github.com/gin-contrib/sessions还是无法解决
这块你找到解决的方法了嘛
BerryXiong commented
查看sessions文档,sessions的使用方法已经改变。 不再有NewCookieStore方法
能否修复更新下代码
jerrylu2011 commented
就不能搞成go.mod的么,那样包都好解决了。。。
wangsongyan commented
就不能搞成go.mod的么,那样包都好解决了。。。
历史遗留问题,下一版本更换
mcwt commented
update main.go
import "github.com/gin-contrib/sessions/cookie"
store := sessions.NewCookieStore([]byte(config.SessionSecret)) -> store := cookie.NewStore([]byte(config.SessionSecret))