我有以下控制器方法:
public ActionResult GetResults(string viewToReturn, int resultsPerPage,
string classification = null, string sessionId = null, int? lastId= null)
{
...
}
通过以下网址调用上述方法:
http://localhost:63455/Home/GetResults?viewToReturn=grid&resultsPerPage=30
导致此消息抛出异常:
在控制器上找不到公共操作方法“GetResults” 'MyWebSite.Controllers.HomeController'。
这里是RegisterRoutes:
......
routes.MapRoute("Home", "home/{action}/{*qualifier}",
new { controller = "Home", action = "Index", qualifier = UrlParameter.Optional });
......
routes.MapRoute("SearchTitle", "{*path}",
new { controller = "Home", action = "SearchTitle", path = UrlParameter.Optional });
为什么我收到此错误,如何解决?谢谢!
答案 0 :(得分:6)
我在方法上有[HttpPost]属性。我可以发誓,我之前删除了它,但不知怎的,在我休息一下后回来,我看到了它。删除后,现在一切正常。