在生成带有查询参数的路线的规格时遇到麻烦,身体参数对我有用,但对于查询参数,即使查看了可疑的文档,我也不确定该怎么做
我希望能够查询/ clothes?color = blue或我为颜色字段传入的任何字符串
我遇到的错误是panic: runtime error: invalid memory address or nil pointer dereference
// clothesHandler will list the clothes
// swagger:route GET /clothes clothingTag clothing
// ---
// summary: Lists the clothes
//
// parameters:
// - in: query
// name: color
// schema:
// type: string
// description: enable color filter
如果我从parameters:
部分中删除了所有内容,则可以毫无错误地生成规范,因此我猜想这有问题