摘要: ABP项目系列目录 1. ABP项目构建 2. ABP项目逻辑实现 3. ABP项目IDS4身份认证 4. ABP项目接口权限控制 5. ABP项目微服务 阅读全文
posted @ 2021-08-31 15:22 无心々菜 阅读(503) 评论(0) 推荐(0) 编辑
摘要: * 常用软件 1. FSCapture 截图软件 https://dl.pconline.com.cn/download/409863.html 注册码:https://blog.csdn.net/yz18931904/article/details/96424952 2. Team Foundat 阅读全文
posted @ 2020-07-06 08:43 无心々菜 阅读(725) 评论(0) 推荐(0) 编辑
摘要: JS 前端动态引用 js 、 css 文件 let jsArrPath = ['/web_config_other.js', '/web_point.js'] let cssArrPath = [] const head = document.getElementsByTagName("head") 阅读全文
posted @ 2024-06-18 11:09 无心々菜 阅读(2) 评论(0) 推荐(0) 编辑
摘要: NETCORE - Grpc 通信四种方式 项目搭建:/1285026182YUAN/p/17679730.html GRPC支持四种通信方式,分别是: UNARY:这是a56爆大奖在线娱乐最简单的客户端与服务端模式,其中客户端发送一个消息后,阻塞等待服务端回复一个消息 阅读全文
posted @ 2024-06-12 11:27 无心々菜 阅读(3) 评论(0) 推荐(0) 编辑
摘要: npm包 - 发布vue组件 一. 环境准备 npm install -g @vue/cli 二. 创建项目 vue create vue-page-card-drag a56爆大奖在线娱乐使用vue2 打开package.json,在rules下添加 "no-unused-vars": "off" 三. 开发组件 阅读全文
posted @ 2024-05-16 20:25 无心々菜 阅读(9) 评论(0) 推荐(0) 编辑
摘要: APP - 签名打包布发布 1. 生成密钥库文件 打开项目,进入 android 文件夹目录,使用控制台执行命令,文中测试密钥使用:123456 keytool -genkey -v -keystore awerncd-release-key.keystore -alias awerncd-rele 阅读全文
posted @ 2024-05-14 09:50 无心々菜 阅读(3) 评论(0) 推荐(0) 编辑
摘要: APP - React Native调试 一. 使用 Chrome DevTools 调试 参考:https://www.reactnative.cn/docs/debugging Hermes 通过实现 Chrome DevTools 协议来支持 Chrome 调试器。这意味着可以使用 Chrom 阅读全文
posted @ 2024-05-13 10:01 无心々菜 阅读(5) 评论(0) 推荐(0) 编辑
摘要: APP - React Native - 热更新(React-native-code-push) 参考文档:https://learn.microsoft.com/zh-cn/appcenter/distribution/codepush/ 1. 创建项目 参考:https://www.cnblog 阅读全文
posted @ 2024-05-11 10:17 无心々菜 阅读(3) 评论(0) 推荐(0) 编辑
摘要: APP - React Native搭建APP项目 官方网站:https://www.reactnative.cn/docs/environment-setup 注:安装过程中需FQ,可使用:www.maomi.shop 一 . 安装环境 安装nvm - node 21.1 nvm安装:https: 阅读全文
posted @ 2024-05-11 09:48 无心々菜 阅读(7) 评论(0) 推荐(0) 编辑
摘要: NETCORE - 全局异常处理(Exception) 环境:.net6 创建异常中间件:ExceptionHandlingMiddleware.cs using Microsoft.AspNetCore.Http; using System; using System.Collections.Ge 阅读全文
posted @ 2024-04-23 09:33 无心々菜 阅读(51) 评论(0) 推荐(0) 编辑
摘要: VUE - 使用h函数创建虚拟节点 1. 如在 antd 的 notification 组件中使用 参考文档:https://1x.antdv.com/components/notification-cn/ let h = this.$createElement; that.$notificatio 阅读全文
posted @ 2024-04-11 09:51 无心々菜 阅读(34) 评论(0) 推荐(0) 编辑
摘要: VUE - 给node_modules添加本地模块link 以o.js 为例。 一. 准备工作 1. 下载 o.js ,把插件包下载到 node_modules 下 yarn add o.js 2. package.json 中,删除 o.js 配置行 二. 添加本地模块 1. 在项目根目录下创建  阅读全文
posted @ 2024-04-10 11:07 无心々菜 阅读(55) 评论(0) 推荐(0) 编辑