您好,我是webapi的新手,但我仍然陷在filter api中,希望从这里获得一些解决方案
如果您在我的api中看到它是api的相同名称,但参数不同,以防我该如何处理它。
答案 0 :(得分:1)
您可以将参数作为可选参数。只是要记住,您不能在可选参数之后写必要的参数-
[HttpGet]
public IHttpActionResult ABC(string city = null, int? pageNumber = null, int? pageSize = null, string gender = null, string product_form = null, string sort = null){
}