使用 AttributeRouting 库,我可以将路由限制为特定动词:
[Route("customers", HttpVerbs.Post)]
在 MVC 5 中内置了 AttributeRouting,但没有采用 HttpVerbs 的重载。在这种情况下,如何将路由限制为 POST?
使用 AttributeRouting 库,我可以将路由限制为特定动词:
[Route("customers", HttpVerbs.Post)]
在 MVC 5 中内置了 AttributeRouting,但没有采用 HttpVerbs 的重载。在这种情况下,如何将路由限制为 POST?