我有一条带有可选参数的路线:
[Route("{categoryId?}")]
public HttpResponseMessage Get(int? categoryId=null)
但是,当我没有为请求本身提供categoryId
调用的值时......{categoryId?}
http://myhost/api/%7BcategoryId%7D
我有一条带有可选参数的路线:
[Route("{categoryId?}")]
public HttpResponseMessage Get(int? categoryId=null)
但是,当我没有为请求本身提供categoryId
调用的值时......{categoryId?}
http://myhost/api/%7BcategoryId%7D