gin获得get和post请求参数,获得请求头信息

获得头信息

复制代码
router.GET("/", func(c *gin.Context) {
		name := c.Query("id")
		fmt.Println(name)
		Token := c.GetHeader("Token")
		c.JSON(http.StatusOK, Token)
	})

获得get和post信息

复制代码
package main

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

type Dades struct {
	Id   int
	Name string
	Age  int
}

func main() {
	router := gin.Default()
	router.GET("/", func(c *gin.Context) {
		//获得get数据
		name := c.Query("id")
		fmt.Println(name)
		c.String(http.StatusOK, "Hello World")
	})
	router.POST("/", func(c *gin.Context) {
		//获得json格式提交的数据
		var data map[string]interface{}
		c.BindJSON(&data)
		c.JSON(http.StatusOK, data)
	})

	router.Run("0.0.0.0:8000")
}
相关推荐
能来帮帮蒟蒻吗2 天前
GO语言学习(16)Gin后端框架
开发语言·笔记·学习·golang·gin
Json20113152 天前
Gin、Echo 和 Beego三个 Go 语言 Web 框架的核心区别及各自的优缺点分析,结合其设计目标、功能特性与适用场景
前端·golang·gin·beego
Json20113153 天前
Swoole 的 Hyperf 框架和 Go 的 Gin 框架高并发原理以及技术实现对比分析
网络·php·gin·swoole
赴前尘3 天前
Go+Gin实现安全多文件上传:带MD5校验的完整解决方案
安全·golang·gin
Golinie3 天前
Ollama+Langchaingo+Gin开发本地LLM简单应用
大模型·gin·ollama·langchaingo
yuanlaile4 天前
Gin介绍及Gin环境搭建
golang·gin·gin环境搭建
techdashen4 天前
性能比拼: Go(Gin) vs Python(Flask)
python·golang·gin
Golinie6 天前
使用Ollama+Langchaingo+Gin通过定义prompt模版实现翻译功能
llm·prompt·gin·langchaingo
南屿欣风7 天前
解决 Gin Web 应用中 Air 热部署无效的问题
前端·gin
执念斩长河8 天前
gin学习
驱动开发·学习·gin