我一直在尝试将第二个POST方法添加到默认的ValuesController类中,该类将采用id参数并与PUT方法相同,如下所示:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Net.Http;
using System.Web.Http;
namespace WebCalendar.Controllers {
public class ValuesController : ApiController {
// GET /values
public IEnumerable<string> Get() {
return new string[] { "value1", "value2" };
}
// GET /values/5
public string Get(int id) {
return "value";
}
// POST /values
public void Post(string value) {
}
// POST /values/5
public void Post(int id, string value) {
Put(id, value);
}
// PUT /values/5
public void Put(int id, string value){
}
// DELETE /values/5
public void Delete(int id) {
}
}
}
问题是,当我添加第二个post方法时,每次发出POST请求时,都会收到错误:
"No action was found on the controller 'values' that matches the request."
如果我注释掉其中一个方法(无论哪个方法),POST将与另一个方法一起使用。我已经尝试重命名方法,甚至在它们上都使用[HttpPost]
,但没有任何效果。
如何在单个ApiController中使用多个POST方法?
修改
这是我正在使用的唯一路线:
routes.MapHttpRoute(
name: "DefaultApi",
routeTemplate: "{controller}/{id}",
defaults: new { controller = "values", id = RouteParameter.Optional }
);
答案 0 :(得分:7)
您必须在路线中加入行动:
routes.MapHttpRoute(
name: "DefaultApi",
routeTemplate: "api/{controller}/{action}/{id}",
defaults: new { id = RouteParameter.Optional }
);