分类
发现
榜单
服务器优惠
AI论文
免费AI编程助手
搜索
注册
登录
分类
发现
榜单
服务器优惠
AI论文
免费AI编程助手
搜索
注册
登录
搜索
书栈网 · BookStack
本次搜索耗时
0.010
秒,为您找到
54
个相关结果.
搜书籍
搜文档
CORS
286
2020-04-12
《CleverGo 1.10 使用教程(繁体)》
CORS 中間件由 rs/cors 提供。 import ( "github.com/clevergo/clevergo" "github.com/rs/cors" ) m := cors . Default (). Handler router . Use ( clevergo . WrapHH (...
CSRF
324
2020-04-12
《CleverGo 1.10 Document》
CRSF middleware is provided by gorilla/csrf . import ( "github.com/clevergo/clevergo" "github.com/gorilla/csrf" ) m := csrf . Protect ( [] byte ( "...
CSRF
463
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-...
Logging
411
2020-04-12
《CleverGo 1.10 使用教程》
Logging 中间件由 clevergo/middleware 提供。 import ( "github.com/clevergo/clevergo" "github.com/clevergo/middleware" ) m := middleware . Logging ( os . Stdout )...
Minify
340
2020-04-12
《CleverGo 1.10 使用教程(繁体)》
Minify 中間件由 tdewolff/minify 提供。 import ( "github.com/clevergo/clevergo" "github.com/tdewolff/minify/v2" "github.com/tdewolff/minify/v2/css" "github...
路由
381
2020-04-12
《CleverGo 1.10 使用教程(繁体)》
基本路由 參數 命名參數 Catch-All 參數 獲取參數 Raw Path 選項 命名路由 路由中間件 基本路由 func index ( ctx * clevergo . Context ) error { return ctx . String ( http . StatusOK , "hello w...
中间件
551
2020-04-12
《CleverGo 1.10 使用教程》
创建中间件 全局中间件 路由组中间件 路由中间件 第三方中间件 创建中间件 中间件是一个接收 Handle 并返回 Handle 的函数。让我们以 ServerHeader 作为例子,其写入 Server 响应头,并调用下一个中间件或处理器。 func ServerHeader ( srv string ) clevergo ...
URL Generation
321
2020-04-12
《CleverGo 1.10 Document》
Named Route Matched Route Named Route Named route is used for reverse route generation. router . Get ( "/login" , login , clevergo . RouteName ( "login" )) router . Get (...
路由
436
2020-04-12
《CleverGo 1.10 使用教程》
基本路由 参数 命名参数 Catch-All 参数 获取参数 Raw Path 选项 命名路由 路由中间件 基本路由 func index ( ctx * clevergo . Context ) error { return ctx . String ( http . StatusOK , "hello w...
路由组
408
2020-04-12
《CleverGo 1.10 使用教程》
api := router . Group ( "/api" , clevergo . RouteGroupMiddleware ( // API 中间件,比如 CORS、身份认证、授权认证。 clevergo . WrapHH ( cors . Default (). Handler ), // https://git...
1..
«
1
2
3
4
»
..6