CRSF 中间件由 gorilla/csrf 提供。
import (
"github.com/clevergo/clevergo"
"github.com/gorilla/csrf"
)
m := csrf.Protect(
[]byte("32-byte-long-auth-key"),
csrf.Secure(false), // 本地开发
// 其他选项
)
router.Use(clevergo.WrapHH(m))
CRSF 中间件由 gorilla/csrf 提供。
import (
"github.com/clevergo/clevergo"
"github.com/gorilla/csrf"
)
m := csrf.Protect(
[]byte("32-byte-long-auth-key"),
csrf.Secure(false), // 本地开发
// 其他选项
)
router.Use(clevergo.WrapHH(m))
本文档使用 BookStack 构建