摘要: 一、下载并安装docker https://shuhao.blog.csdn.net/article/details/119459609 二、下载禅道 docker pull idoop/zentao 三、运行镜像 docker run -d -p 8183:... 阅读全文
posted @ 2021-08-12 12:15 前方一片光明 阅读(157) 评论(0) 推荐(0) 编辑
摘要: 一、安装依赖包 yum install -y yum-utils device-mapper-persistent-data lvm2 二、设置阿里云镜像源 yum-config-manager --add-repo https://mirrors.aliyu... 阅读全文
posted @ 2021-08-12 12:14 前方一片光明 阅读(144) 评论(0) 推荐(0) 编辑
摘要: 通过js实现多条件过滤 //多条件过滤,array是传入的数据,filters是过滤条件multiFilter(array, filters) { filters = me.evtHandlers.removeEmpty(filters); co... 阅读全文
posted @ 2021-08-12 12:13 前方一片光明 阅读(2045) 评论(0) 推荐(0) 编辑
摘要: 前言 数据库中的很多查询都是可以优化的,本文记录了博主数据库用到的优化方案,希望能给大家提供一些思路。 1.使用instr代替like instr函数也有三种情况: a. instr(字段,'关键字') > 0 相当于 字段like '%关键字%': ... 阅读全文
posted @ 2021-08-12 12:11 前方一片光明 阅读(99) 评论(0) 推荐(0) 编辑