ABP学习笔记

Posted *Hunter

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ABP学习笔记相关的知识,希望对你有一定的参考价值。

一、ABP配置

 

 

一、ABP配置

//将所有异常发送到客户端
Configuration.Modules.AbpWebCommon().SendAllExceptionsToClients = true;

1,自定义配置

①创建配置类

    public class CustomModule
    {
        public bool IsEnable { get; set; }
    }

 

②定义Configuration扩展

    public static class ModuleConfigrationExt
    {
        public static CustomModule GetCustomModule(this IModuleConfigurations moduleConfigurations)
        {
            return moduleConfigurations.AbpConfiguration.Get<CustomModule>();
        }
    }

③使用自定义配置

            //注册CustomModule配置类
            IocManager.Register<CustomModule>();
            //设置CustomModule配置
            Configuration.Modules.GetCustomModule().IsEnable = true;

 

以上是关于ABP学习笔记的主要内容,如果未能解决你的问题,请参考以下文章

学习笔记:python3,代码片段(2017)

[原创]java WEB学习笔记61:Struts2学习之路--通用标签 property,uri,param,set,push,if-else,itertor,sort,date,a标签等(代码片段

框架设计知识点纵览(笔记)

ABP学习入门系列

abp学习

ABP学习入门系列(菜单和分页)