goji 是个性能很好的轻量级GoLang web 框架,下面推荐两个较完整的web 项目
- https://github.com/elcct/defaultproject 数据库使用MongoDB demo
- https://github.com/haruyama/golang-goji-sample 这fork 上面的项目,数据库使用Mysql
基于这两个项目,你可以很快建立自己的web 应用。使用时需要修改一下,cookie 需要设置路径 '/'
1
2
3
4
5
6
7
application.Store.Options = &sessions.Options{
Path: "/", // important
//Domain: "",
MaxAge: 72000,
HttpOnly: true,
Secure: config.Get("cookie.secure").(bool),
}
goji v1.0 的两个例子
本文网址: https://golangnote.com/topic/37.html 转摘请注明来源