码迷,mamicode.com
首页 > 其他好文 > 详细

路由组

时间:2019-12-20 01:03:07      阅读:71      评论:0      收藏:0      [点我收藏+]

标签:net   star   user   com   username   pac   run   edit   ble   

package main

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


func main() { //代码块

    router := gin.Default()
    v1:=router.Group("/v1/topics")

    {
        v1.GET("", func(context *gin.Context) {
            context.String(http.StatusOK,"获取帖子列表")
        })
        v1.GET("/:topic_id", func(c *gin.Context) {
            c.String(http.StatusOK,"获取用户名=%s的帖子列表",c.Query("username"))
        })
        router.Run()
    }

}




路由组

标签:net   star   user   com   username   pac   run   edit   ble   

原文地址:https://www.cnblogs.com/hualou/p/12071045.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!