我有一个控制器
public class SimulatorController : ApiController
{
private SimulatorService _simulatorService;
public SimulatorController()
{
_simulatorService = new SimulatorService();
}
[HttpGet]
[Route("spiceusers")]
public async Task<IHttpActionResult> GetConsumerProductsAsync()
{
var consumerProductsList = await _simulatorService.GetConsumerProductsAsync();
return Ok(consumerProductsList);
}
}
我有uri
http://comm-rpp-emulator.com/spiceusers/9656796/devicesfuse?includeComponents=true&groupByParentDevice=true&includeChildren=true&limit=50&page=1
我需要处理我的方法
http://comm-rpp-emulator.com/spiceusers
并忽略uri的其他部分?
答案 0 :(得分:3)
您可以使用诸如{*segment}
之类的catch-all路由参数来捕获URL路径的剩余部分。
这里假设属性路由已经启用。
public static class WebApiConfig {
public static void Register(HttpConfiguration config) {
// Web API routes
config.MapHttpAttributeRoutes();
// Other Web API configuration not shown.
}
}
发布的示例中的URL可以通过使用catch-all route参数与操作匹配,该参数将捕获与模板匹配的URL路径的剩余部分
//GET spiceusers/{anything here}
[HttpGet]
[Route("~/spiceusers/{*url}")]
public async Task<IHttpActionResult> GetConsumerProductsAsync() { ... }
现在,对/spiceusers
的任何来电都会按预期映射到上述操作。
请注意,这也包括spiceusers
模板下的所有子调用,前提是这是预期的。
另请注意,如果此web api与默认MVC一起使用,则路径与默认路由冲突。但鉴于wep api路由往往在MVC路由之前注册,可能不是那么大的问题。