2021
04-27
04-27
ASP.NET Core自动生成小写破折号路由的实现方法
默认情况下,ASP.NETCore使用如 http://localhost:5000/HomeIndex 类的大驼峰路由。但是如果想使用小写的路由,并且这些路由用破折号分隔:http://localhost:5000/home-index它们比较常见且一致。举例.NET常见路由http://localhost:5000/User/ListPages想要的效果http://localhost:5000/user/list-pages1、如何生成小写的路由可以这样设置services.ConfigureRouting(setupAction=>{setupAction.LowercaseUrls=t...
继续阅读 >