当路由中包含 dot/period 时,如何在 asp.net 核心中使用属性路由

How to use attribute routing in asp.net core when the routing has dot/period in it

当路由中包含 dot/period 时,如何在 asp.net 核心中使用属性路由。 asp.net core /.net 6

中的复杂模式

就像正常路由一样 例如:

[Route("/download/v1.3")]
public IActionResult Download()
{
    return View();
}