所以我有以下控件:
public class ItemQuery {
public int storeID { get; set; }
public int companyID { get; set; }
public string itemName { get; set; }
public string itemDescription { get; set; }
public string itemPLU { get; set; }
public string itemUPC { get; set; }
public int supplierID { get; set; }
public string partNumber { get; set; }
}
public class ItemController : ApiController {
public List<Item> FindItem([FromUri]ItemQuery query) {
return new List<Item>();
}
}
我试图用这个请求点击它:
http://localhost:43751/api/Item/Find?query[storeID]=1
它没有合作但给我这个错误:
The requested resource does not support http method 'GET'.
我该怎么办?这是我的路由信息,我还没有改变任何内容:
public static void RegisterRoutes(RouteCollection routes) {
routes.IgnoreRoute("{resource}.axd/{*pathInfo}");
routes.MapRoute(
name: "Default",
url: "{controller}/{action}/{id}",
defaults: new { controller = "Home", action = "Index", id = UrlParameter.Optional }
);
}
答案 0 :(得分:3)
我认为您应该确保为Web Api使用System.Web.Http命名空间。
然后将方法名称更改为GetFindItem
或添加HttpGet
属性,如下所示:
[HttpGet]
public List<Item> FindItem([FromUri]ItemQuery query){ // }
您的查询字符串也应如下所示:
http://localhost:43751/api/Item/?storeId=1&companyID=2&itemName=ABC&itemDescription=good&itemPLU=aa&itemUPC=dd&&supplierID=1&partNumber=number
如果您使用Ajax来调用Web API,下面是一个示例
Js档案
var data = {
storeID: 1,
companyID: 1,
itemName: 'Test',
itemDescription: 'Description',
itemPLU: 'Test',
itemUPC: 'Test',
supplierID: 1,
partNumber: 'Description',
};
$.getJSON('/api/Item', { query:data }, function() {
alert("success");
});
答案 1 :(得分:0)
您尚未为Web Api定义路由。
你拥有的routes.MapRoute
是针对MVC的。要为Web Api定义路由,您需要使用routes.MapHttpRoute