上一页 1 ··· 6 7 8 9 10 11 12 13 14 ··· 27 下一页
摘要: VUE - install 方式插件的使用 1. 创建 VUE 项目 vue create vueplug 项目初始化结构 2. 创建 modules 文件夹,用于存放自定义插件 3. 在 modules 中创建 插件文件:Cmponent.vue <template> <div>组件</div> 阅读全文
posted @ 2022-08-23 14:19 无心々菜 阅读(355) 评论(0) 推荐(0) 编辑
摘要: mysql 之 my.ini 配置 1. max_allowed_packet 配置 在 mysqld 节点下添加,配置MySQL允许的最大数据包大小,下面的500M你可以根据你的项目修改为你自己的值,只要比要导入的备份文件大就可以了。 (未配置有可能报错:MySQL出现“Lost connecti 阅读全文
posted @ 2022-08-17 10:59 无心々菜 阅读(1142) 评论(0) 推荐(0) 编辑
摘要: VUE - DIV拖动边框调整宽度 父页面: <template> <div class="m-body" > </div> </template> <style lang="less" scoped> .m-body { position: relative; } </style> 子页面: <t 阅读全文
posted @ 2022-08-03 11:05 无心々菜 阅读(787) 评论(0) 推荐(0) 编辑
摘要: NETCORE - IHostedService定时任务的使用 项目环境,net core 3.1 + webapi 安装依赖: Microsoft.Extensions.Hosting.Abstractions 1. 在startup.cs中注册 // .Net 6 builder.Service 阅读全文
posted @ 2022-07-13 18:54 无心々菜 阅读(158) 评论(0) 推荐(0) 编辑
摘要: mysql 外键约束的情况下删除表数据 数据库在有外键约束的情况下,删除不掉数据,解决方案 数据库中查看外键是否有效 SELECT@@foreign_key_checks; 外键状态默认为有效(1) 设置外键状态为无效(0) SET FOREIGN_KEY_CHECKS=0; 删除表所有数据,使用t 阅读全文
posted @ 2022-07-13 15:39 无心々菜 阅读(680) 评论(0) 推荐(0) 编辑
摘要: VUE - 使用kkfileview文件预览功能 1.环境要求: java 1.8+ 2.部署运行: 本机以及虚拟机上运行: 1.从 https://gitee.com/kekingcn/file-online-preview/releases 地址下载最新的版发行包 2.解压kkFileView- 阅读全文
posted @ 2022-06-24 11:25 无心々菜 阅读(1655) 评论(0) 推荐(0) 编辑
摘要: VUE - Cesium引用 环境: vue2 + vuecli4.5.13 + cesium 1.94.3 方式1: cnpm install cesium --save-dev 操作:复制cesium安装包中的 node_modules\cesium\Build\Cesium 到 public\ 阅读全文
posted @ 2022-06-24 11:00 无心々菜 阅读(1811) 评论(0) 推荐(0) 编辑
摘要: React 中使用 tailwind 样式框架 官网:https://www.tailwindcss.cn/ 框架( react + antd ) : https://ant.design/docs/react/introduce-cn 1. 创建react 项目: npx create-react 阅读全文
posted @ 2022-05-11 11:33 无心々菜 阅读(1178) 评论(1) 推荐(0) 编辑
摘要: VUE - iframe消息通信postMessage 1. 准备两个 vue 项目 1) 项目1,地址:http://cdeserver.railplus.com:8000/ 2) 项目2,地址:http://localhost:8081/ 2. 在项目2中 iframe 引入 1) web_co 阅读全文
posted @ 2022-05-06 16:55 无心々菜 阅读(1121) 评论(0) 推荐(0) 编辑
摘要: VUE - Cesium编译打包 官网上下载 cesium 开发包:https://github.com/CesiumGS/cesium.git 安装 cnpm cnpm install 安装gulp,(-g 表示全局安装,可选) cnpm install gulp -g 执行命令 生成Apps文件 阅读全文
posted @ 2022-04-29 11:22 无心々菜 阅读(259) 评论(0) 推荐(0) 编辑
上一页 1 ··· 6 7 8 9 10 11 12 13 14 ··· 27 下一页