当前位置 : 主页 > 编程语言 > java >

gin框架31--路由参数

来源:互联网 收集:自由互联 发布时间:2022-09-02
gin框架31--路由参数 ​​介绍​​ ​​案例​​ ​​说明​​ 介绍 本文介绍gin框架中的路由参数, 并通过案例说明其区别。 案例 源码: package main import ( "github.com/gin-gonic/gin" "net/http


gin框架31--路由参数

  • ​​介绍​​
  • ​​案例​​
  • ​​说明​​

介绍

本文介绍gin框架中的路由参数, 并通过案例说明其区别。

案例

源码:

package main

import (
"github.com/gin-gonic/gin"
"net/http"
)

func main() {
r := gin.Default()

// 此 handler 将匹配 /user/john 但不会匹配 /user/ 或者 /user
r.GET("/user/:name", func(c *gin.Context) {
name := c.Param("name")
c.String(http.StatusOK, "Hello %s", name)
})

// 此 handler 将匹配 /user/john/ 和 /user/john/send
// 如果没有其他路由匹配 /user/john,它将重定向到 /user/john/
r.GET("/user/:name/*action", func(c *gin.Context) {
name := c.Param("name")
action := c.Param("action")
message := name + " is " + action
c.String(http.StatusOK, message)
})

r.Run(":8080")
}

注意: 使用 *action 后, action 包括了 / , 使用 :action 后, action 不包括 /

测试:

http://127.0.0.1:8080/user/jhon
Hello jhon

http://127.0.0.1:8080/user/jhon/send
jhon is /send

说明

​​gin官方文档 路由参数​​


上一篇:Qt 笔记4--Qt 读写CSV
下一篇:没有了
网友评论