书栈网 · BookStack 本次搜索耗时 0.010 秒,为您找到 54 个相关结果.
  • CORS

    CORS 中間件由 rs/cors 提供。 import ( "github.com/clevergo/clevergo" "github.com/rs/cors" ) m := cors . Default (). Handler router . Use ( clevergo . WrapHH (...
  • CSRF

    CRSF middleware is provided by gorilla/csrf . import ( "github.com/clevergo/clevergo" "github.com/gorilla/csrf" ) m := csrf . Protect ( [] byte ( "...
  • CSRF

    CRSF 中间件由 gorilla/csrf 提供。 import ( "github.com/clevergo/clevergo" "github.com/gorilla/csrf" ) m := csrf . Protect ( [] byte ( "32-byte-long-auth-...
  • Logging

    Logging 中间件由 clevergo/middleware 提供。 import ( "github.com/clevergo/clevergo" "github.com/clevergo/middleware" ) m := middleware . Logging ( os . Stdout )...
  • Minify

    Minify 中間件由 tdewolff/minify 提供。 import ( "github.com/clevergo/clevergo" "github.com/tdewolff/minify/v2" "github.com/tdewolff/minify/v2/css" "github...
  • 路由

    基本路由 參數 命名參數 Catch-All 參數 獲取參數 Raw Path 選項 命名路由 路由中間件 基本路由 func index ( ctx * clevergo . Context ) error { return ctx . String ( http . StatusOK , "hello w...
  • 中间件

    创建中间件 全局中间件 路由组中间件 路由中间件 第三方中间件 创建中间件 中间件是一个接收 Handle 并返回 Handle 的函数。让我们以 ServerHeader 作为例子,其写入 Server 响应头,并调用下一个中间件或处理器。 func ServerHeader ( srv string ) clevergo ...
  • URL Generation

    Named Route Matched Route Named Route Named route is used for reverse route generation. router . Get ( "/login" , login , clevergo . RouteName ( "login" )) router . Get (...
  • 路由

    基本路由 参数 命名参数 Catch-All 参数 获取参数 Raw Path 选项 命名路由 路由中间件 基本路由 func index ( ctx * clevergo . Context ) error { return ctx . String ( http . StatusOK , "hello w...
  • 路由组

    api := router . Group ( "/api" , clevergo . RouteGroupMiddleware ( // API 中间件,比如 CORS、身份认证、授权认证。 clevergo . WrapHH ( cors . Default (). Handler ), // https://git...