我有一个名为LoginController的控制器,其Get方法的签名为:
public string Get(string Key,string Code,string UserID,string Password)
http://localhost:1234/api/Login/KeyValue/CodeValue/UserValue/PasswordValue
我不能让这个工作.如果我用以下方式调用呼叫:
http://localhost:1234/api/Login?Key=KeyValue&Code=CodeValueUserID=UserValue&Password=PasswordValue
通话成功.
我已经尝试将下面的路由添加到Global.asax
routes.MapHttpRoute(name: "Login",routeTemplate: "api/{controller}/{action}/{Key}/{Code}/{UserID}/{Password}",defaults: new { Key = UrlParameter.Optional,Code = UrlParameter.Optional,UserID = UrlParameter.Optional,Password = UrlParameter.Optional });
要么
routes.MapHttpRoute(name: "Login",routeTemplate: "api/{controller}/{Key}/{Code}/{UserID}/{Password}",Password = UrlParameter.Optional });
这些似乎不起作用.我哪里出错或者这是否可能?我能够在带有MVC3的RC版WebApi中做到这一点.
解决方法
您似乎错过了请求中的操作(/ api / Login / KeyValue / CodeValue / UserValue / PasswordValue).
如果您打算使用第一条路线,请尝试/ api / Login / Get / KeyValue / CodeValue / UserValue / PasswordValue.
如果您打算使用第一条路线,请尝试/ api / Login / Get / KeyValue / CodeValue / UserValue / PasswordValue.
如果您希望能够在未指定操作的情况下调用它并默认为“获取”,则必须指定默认操作:
defaults: new { Key = UrlParameter.Optional,Password = UrlParameter.Optional,Action = "Get" }
我已经在ASP.NET MVC 4项目(Visual Studio 2012 RC)中成功尝试了这个:
使用action创建LoginController:
public string Get(string Key,string Password) { return Key + Code + UserID + Password; }
并在Global.asax.cs中映射路由:
RouteTable.Routes.MapHttpRoute(null,"api/{controller}/{Key}/{Code}/{UserID}/{Password}",new { Key = UrlParameter.Optional,Action = "Get"});
如果它不适合您,可能是另一条路线正在捕捉请求或路线未被注册.