将整数数组传递给ASP.NET Web API?
我有一个ASP.NET Web API(第4版)REST服务,我需要传递一个整数数组。
这是我的操作方法:
public IEnumerable<Category> GetCategories(int[] categoryIds){// code to retrieve categories from database
}
这是我尝试过的URL:
/Categories?categoryids=1,2,3,4
回答:
您只需要 在参数之前添加,如下所示:
GetCategories([FromUri] int[] categoryIds)
并发送请求:
/Categories?categoryids=1&categoryids=2&categoryids=3
以上是 将整数数组传递给ASP.NET Web API? 的全部内容, 来源链接: utcz.com/qa/406104.html