在没有 'slash' 的 ASP.NET 核心中路由

Routing in ASP.NET Core without a 'slash'

所有路由示例都使用 / 字符,例如:

/{category}/{product}/{id} 为了 /computer/mainboard/13

是否可以使用逗号 , 而不是 /?例如:

/{category},{product},{id} 对于 /computer,mainboard,13

是的,有可能。

我在 ASP.NET Core 2.2 上测试过。

TestController.cs:

[Route("test")]
public class TestController :Controller
{
    [HttpGet("somepath/{a},{b},{c}")]
    public IActionResult Test(string a, string b, int c)
    {
        return Ok($"a: {a}, b: {b}, c: {c}");
    }
}

StartUp.cs:

public class Startup
{
    public void ConfigureServices(IServiceCollection services)
    {
        services.AddMvc();
    }

    public void Configure(IApplicationBuilder app, IHostingEnvironment env)
    {
        app.UseMvc();
    }
}

Program.cs:

public class Program
{
    public static void Main(string[] args)
    {
        CreateWebHostBuilder(args).Build().Run();
    }

    public static IWebHostBuilder CreateWebHostBuilder(string[] args) =>
        WebHost.CreateDefaultBuilder(args)
            .UseStartup<Startup>();
}

打开 http://localhost:5000/test/somepath/abc,def,123 时,我得到了预期的输出:

a: abc, b: def, c: 123