go-swagger使用查询参数生成路由规范

时间:2018-08-01 16:14:39

标签: json rest go swagger go-swagger

在生成带有查询参数的路线的规格时遇到麻烦,身体参数对我有用,但对于查询参数,即使查看了可疑的文档,我也不确定该怎么做

我希望能够查询/ 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:部分中删除了所有内容,则可以毫无错误地生成规范,因此我猜想这有问题

0 个答案:

没有答案