分类
发现
榜单
服务器优惠
AI论文
IT文库
搜索
注册
登录
分类
发现
榜单
服务器优惠
AI论文
IT文库
搜索
注册
登录
搜索
书栈网 · BookStack
本次搜索耗时
0.013
秒,为您找到
54
个相关结果.
搜书籍
搜文档
中間件
355
2020-04-12
《CleverGo 1.10 使用教程(繁体)》
創建中間件 全局中間件 路由組中間件 路由中間件 第三方中間件 創建中間件 中間件是一個接收 Handle 並返回 Handle 的函數。讓我們以 ServerHeader 作爲例子,其寫入 Server 響應頭,並調用下一個中間件或處理器。 func ServerHeader ( srv string ) clevergo ...
路由組
295
2020-04-12
《CleverGo 1.10 使用教程(繁体)》
api := router . Group ( "/api" , clevergo . RouteGroupMiddleware ( // API 中間件,比如 CORS、身份認證、授權認證。 clevergo . WrapHH ( cors . Default (). Handler ), // https://git...
Routing
445
2020-04-12
《CleverGo 1.10 Document》
Basic Routing Parameters Named Parameters Catch-All Parameters Retrieve Parameters Raw Path Options Route Name Route Middleware Basic Routing func index ( ctx * clever...
Quick Start
293
2020-04-12
《CleverGo 1.10 Document》
Installation Example Installation go get github . com / clevergo / clevergo Example package main import ( "fmt" "net/http" "github.com/cle...
快速入门
550
2020-04-12
《CleverGo 1.10 使用教程》
安装 举个栗子 安装 go get github . com / clevergo / clevergo 举个栗子 package main import ( "fmt" "net/http" "github.com/clevergo/clevergo" ) fu...
Minify
433
2020-04-12
《CleverGo 1.10 Document》
Minify middleware is provided by tdewolff/minify . import ( "github.com/clevergo/clevergo" "github.com/tdewolff/minify/v2" "github.com/tdewolff/minify/v2/c...
Response
432
2020-04-12
《CleverGo 1.10 Document》
Text HTML Render JSON JSONP XML Emit Blob Redirect SendFile Shortcuts ctx.Response equals to http.ResponseWriter . Text func text ( ctx * clevergo . Context ) ...
Logging
351
2020-04-12
《CleverGo 1.10 使用教程(繁体)》
Logging 中間件由 clevergo/middleware 提供。 import ( "github.com/clevergo/clevergo" "github.com/clevergo/middleware" ) m := middleware . Logging ( os . Stdout )...
CSRF
407
2020-04-12
《CleverGo 1.10 使用教程(繁体)》
CRSF 中間件由 gorilla/csrf 提供。 import ( "github.com/clevergo/clevergo" "github.com/gorilla/csrf" ) m := csrf . Protect ( [] byte ( "32-byte-long-auth-...
快速入門
415
2020-04-12
《CleverGo 1.10 使用教程(繁体)》
安裝 舉個栗子 安裝 go get github . com / clevergo / clevergo 舉個栗子 package main import ( "fmt" "net/http" "github.com/clevergo/clevergo" ) fu...
1
2
3
4
»
..6