欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

golang httpget 请求方式注意事项

程序员文章站 2024-02-04 20:31:52
...

1 httpget query 方式 结构体字段应该用form标记

type   xxxx struct{
	Name   string    `form:"name"`
}

如果Name可以为空 在 Swagger中要标注 false

// @Param Name    query int false "Name" "Name"

在 GORM中也要标记 vd:"?

type   xxxx struct{
	Name   string   `gorm:"column:Name;type:int;comment:Name" vd:"?"  json:"Name"`
}
相关标签: GOLang golang