书栈网 · BookStack 本次搜索耗时 0.030 秒,为您找到 1015 个相关结果.
  • HTML rendering

    HTML rendering Custom Template renderer Custom Delimiters Custom Template Funcs HTML rendering Using LoadHTMLGlob() or LoadHTMLFiles() func main () { router := gi...
  • 上传单个文件

    1083 2020-06-11 《Go语言中文文档》
    1. 上传单个文件 1.1.1. 上传特定文件 1. 上传单个文件 multipart/form-data格式用于文件上传 gin文件上传与原生的net/http方法类似,不同在于gin把原生的request封装到c.Request中 <!DOCTYPE html> <html lang = "en" > <head> ...
  • 使用 BasicAuth 中间件

    使用 BasicAuth 中间件 使用 BasicAuth 中间件 // 模拟一些私人数据 var secrets = gin . H { "foo" : gin . H { "email" : "foo@bar.com" , "phone" : "123433" }, "austin" : ...
  • 使用 BasicAuth 中间件

    使用 BasicAuth 中间件 使用 BasicAuth 中间件 // 模拟一些私人数据 var secrets = gin . H { "foo" : gin . H { "email" : "foo@bar.com" , "phone" : "123433" }, "austin" : ...
  • 日志文件

    1. 日志文件 1. 日志文件 package main import ( "io" "os" "github.com/gin-gonic/gin" ) func main () { gin . DisableConsoleColor () ...
  • 控制器

    控制器 数据解析绑定 模型绑定可以将请求体绑定给一个类型,目前支持绑定的类型有 JSON, XML 和标准表单数据 (foo=bar&boo=baz)。要注意的是绑定时需要给字段设置绑定类型的标签。比如绑定 JSON 数据时,设置 json:"fieldname" 。使用绑定方法时,Gin 会根据请求头中 Content-Type 来自动判...
  • Model binding and validation

    Model binding and validation To bind a request body into a type, use model binding. We currently support binding of JSON, XML and standard form values (foo=bar&boo=baz). Gin use...
  • 中间件

    中间件 分类使用方式 // 1.全局中间件 router . Use ( gin . Logger ()) router . Use ( gin . Recovery ()) // 2.单路由的中间件,可以加任意多个 router . GET ( "/benchmark" , MyMiddelware (), benc...
  • Run multiple service

    Run multiple service Run multiple service See the question and try the following example: package main import ( "log" "net/http" "time" "...
  • 运行多个服务

    运行多个服务 运行多个服务 请参阅 issues 并尝试以下示例: package main import ( "log" "net/http" "time" "github.com/gin-gonic/gin" "golang.org/x/sync/errg...