.NetCore——API设置统一路由

NetCore3.1——API设置统一路由

一、前言
今天说一下在.netcore3.1的版本下设置统一的API路由。
二、实现
添加MvcOptionsExtensions扩展类
如下
.NetCore——API设置统一路由_第1张图片

 public static class MvcOptionsExtensions
    {
        /// 
        /// 扩展方法
        /// 
        /// 
        /// 
        public static void UseCentralRoutePrefix(this MvcOptions opts, IRouteTemplateProvider routeAttribute)
        {
            // 添加我们自定义 实现IApplicationModelConvention的RouteConvention
            opts.Conventions.Insert(0, new RouteConvention(routeAttribute));
        }
    }

然后在添加RouteConvention类
如下
.NetCore——API设置统一路由_第2张图片

    public class RouteConvention : IApplicationModelConvention
    {
        /// 
        /// 定义一个路由前缀变量
        /// 
        private readonly AttributeRouteModel _centralPrefix;

        /// 
        /// 调用时传入指定的路由前缀
        /// 
        /// 
        public RouteConvention(IRouteTemplateProvider routeTemplateProvider)
        {
            _centralPrefix = new AttributeRouteModel(routeTemplateProvider);

        }


        /// 
        /// 接口的Apply方法
        /// 
        /// 
        public void Apply(ApplicationModel application)
        {
            //遍历所有的 Controller
            foreach (var controller in application.Controllers){

                // 1、已经标记了 RouteAttribute 的 Controller
                // 如果在控制器中已经标注有路由了,则会在路由的前面再添加指定的路由内容。
                var matchedSelectors = controller.Selectors.Where(x => x.AttributeRouteModel != null).ToList();
                if (matchedSelectors.Any()) 
                { 
                    foreach (var selectorModel in matchedSelectors)
                    {
                        // 在 当前路由上 再 添加一个 路由前缀
                        selectorModel.AttributeRouteModel = AttributeRouteModel.CombineAttributeRouteModel(_centralPrefix,selectorModel.AttributeRouteModel);
                    }
                }

                // 2、没有标记 RouteAttribute 的 Controller
                var unmatchedSelectors = controller.Selectors.Where(x => x.AttributeRouteModel == null).ToList();
                if (unmatchedSelectors.Any())
                {
                    foreach (var selectorModel in unmatchedSelectors)
                    {
                        // 添加一个 路由前缀
                        selectorModel.AttributeRouteModel = _centralPrefix;

                    }
                }
            }
        }
    }

在添加完这两个类库后,需要在Startup的ConfigureServices中添加定义统一路由
添加如下代码
在这里插入图片描述

services.AddMvc(option => { 
                option.Filters.Add(typeof(MyAuthorizeFilter));
                option.UseCentralRoutePrefix(new RouteAttribute("/api/v1"));//在各个控制器添加前缀(没有特定的路由前面添加前缀)
                //opt.UseCentralRoutePrefix(new RouteAttribute("api/[controller]/[action]"));
            });

三、运行结果
在这里插入图片描述

.NetCore——API设置统一路由_第3张图片

这样就可以设置API的统一路由了。

共同进步 biubiubiu…

你可能感兴趣的:(.netCore日常使用,c#,.net)