2019年2月11日

摘要: 后台服务器代码有问题 实体不对称,导致映射不对 阅读全文
posted @ 2019-02-11 22:43 topguntopgun 阅读(1129) 评论(0) 推荐(0) 编辑

2019年1月10日

摘要: 1、ABP自动注入 //IapplicationService注入方式暴露接 //ITransientDependency 不会暴露接口 ITransientDependency和ISingletonDependency 2、手工注入 // IocManager.Register<IOracleHe 阅读全文
posted @ 2019-01-10 10:33 topguntopgun 阅读(254) 评论(0) 推荐(0) 编辑

2019年1月8日

摘要: 1、安装 yarn npm install yarn -g 2、卸载yarn npm uninstall yarn -g 阅读全文
posted @ 2019-01-08 10:48 topguntopgun 阅读(426) 评论(0) 推荐(0) 编辑

2019年1月2日

摘要: 把资源文件 的zh-cn去掉就可以,改成默认文件 阅读全文
posted @ 2019-01-02 16:13 topguntopgun 阅读(252) 评论(0) 推荐(0) 编辑

2018年12月15日

摘要: public static string PostMoths(string url, LoginDTO obj_model, Dictionary<string, string> dic = null) { dic = new Dictionary<string, string>(); dic.Ad 阅读全文
posted @ 2018-12-15 00:41 topguntopgun 阅读(7258) 评论(0) 推荐(0) 编辑

2018年9月15日

摘要: 1、创建如下的项目结构 运行方法,打开测试资源管理器,让后点击全部运行: Assert.True 断言累,判断返回结果是否真,真表示测试通过,false表示测试不通过 如果以前使用过NUnit或者VS自带的MSTest测试工具,下面的对比表格会让你很容易上手xUnit.net: NUnit 2.2 阅读全文
posted @ 2018-09-15 18:09 topguntopgun 阅读(272) 评论(0) 推荐(0) 编辑

2018年9月11日

摘要: 1、ABP异常处理机制是通过过滤器实现的,我们查看的webAPI的异常处理,我们来看看他的源码,AbpApiExceptionFilterAttribute 继承ExceptionFilterAttribute, ITransientDependency 我们看看他怎么处理异常的,他主要通过这个方法 阅读全文
posted @ 2018-09-11 22:51 topguntopgun 阅读(1572) 评论(0) 推荐(0) 编辑

2018年9月10日

摘要: 1、第一步安装Abp.Quartz ,把他安装到核心层 核心模块添加对quarz的依赖, 领域层创建firstjob类 创建领域层作业服务类 应用层创建接口 ABP默认接口访问地址,调用接口: http://localhost:12021/api/services/app/JobManager/Ge 阅读全文
posted @ 2018-09-10 23:14 topguntopgun 阅读(671) 评论(0) 推荐(0) 编辑

2018年9月4日

摘要: 由于访问人数过多,我今天从新整理一下ABP权限认证机制,帮助大家更容易读懂 1、Abp 的权限拦截主要通过过滤器, public class AbpAuthorizationFilter : IAsyncAuthorizationFilter, ITransientDependency 实现的,他的 阅读全文
posted @ 2018-09-04 13:02 topguntopgun 阅读(985) 评论(0) 推荐(0) 编辑

2018年9月2日

摘要: ABP是“ASP.NET Boilerplate Project (ASP.NET样板项目)”的简称。 ABP使用以下技术: 服务器端: 客户端: ABP的优势: ABP的体系架构 为了减少复杂性和提高代码的可重用性,采用分层架构是一种被广泛接受的技术。为了实现分层的体系结构,ABP遵循DDD(领域 阅读全文
posted @ 2018-09-02 22:56 topguntopgun 阅读(366) 评论(0) 推荐(0) 编辑

导航