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

    Handle Context Handle Handle is a request handler, it receives a context instance, and write response to client: func home ( ctx * clevergo . Context ) error { re...
  • Introduction

    CleverGo is a lightweight , high performance and feature rich HTTP web framework written in Go. High Performance: extremely fast, see Benchmark . Gradual learning curve: you...
  • 視圖

    Jet 路由器爲模板引擎定義了一個 Renderer 接口。 func render ( ctx * clevergo . Context ) error { return ctx . Render ( http . StatusOK , "index.tmpl" , map [ string ] interface {}...
  • 請求

    請求方法斷言 快捷方式 ctx.Request 即 *http.Request . 請求方法斷言 func handler ( ctx * clevergo . Context ) error { // equals to ctx.IsMethod(http.MethodGet). if ctx . I...
  • 请求

    请求方法断言 快捷方式 ctx.Request 即 *http.Request . 请求方法断言 func handler ( ctx * clevergo . Context ) error { // equals to ctx.IsMethod(http.MethodGet). if ctx . I...
  • Views

    Jet Router defines a Renderer interface for rendering a template. func render ( ctx * clevergo . Context ) error { return ctx . Render ( http . StatusOK , "index.t...
  • 介绍

    CleverGo 一个用 Go 语言编写的轻量级 、高性能 和功能丰富 的 HTTP Web 开发框架。 高性能: 速度极快,参阅基准测试 。 平缓的学习曲线: 所有文档可在半小时内阅读完毕。 反向路由生成 : 可以通过命名路由或匹配路由生成 URL。 路由组 : 亦称子路由。 对 RESTful APIs 友好: 很容易设计 RESTful...
  • Error Handling

    Error Handler allow recording error and formatting error response, it receives a context and an error that returns by middleware or final handler. type ErrorHandler struct {...
  • 錯誤處理

    錯誤處理器可以讓你記錄錯誤和格式化錯誤響應(HTML、JSON、XML…),其接收一個 Context 實例和一個由中間件或者最終處理器產生的錯誤 。 type ErrorHandler struct { tmpl * template . Template } func NewErrorHandler ( tmp...
  • 错误处理

    错误处理器可以让你记录错误和格式化错误响应(HTML、JSON、XML…),其接收一个 Context 实例和一个由中间件或者最终处理器产生的错误 。 type ErrorHandler struct { tmpl * template . Template } func NewErrorHandler ( tmp...