我有一个带有可选参数的路线:
[Route("{categoryId?}")]
public HttpResponseMessage Get(int? categoryId=null)
但是,如果我没有为categoryId
提供值,则请求中包含{categoryId?}
...
http://myhost/api/%7BcategoryId%7D
答案 0 :(得分:6)
Swagger不支持可选路径参数。如果您希望以这种方式记录,则必须创建两个单独的路径 - 一个没有路径参数,另一个路径参数。