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"`
}
上一篇: http请求参数为中文时注意事项