上一页 1 2 3 4 5 6 7 ··· 9 下一页
摘要: el-upload on-success默认带参,传index参数。 <el-upload class="uploader-btn" action="/api/blade-resource/oss/endpoint/put-file-v1" methods = "post" :headers="he 阅读全文
posted @ 2022-04-08 09:46 pxuan 阅读(1080) 评论(0) 推荐(0)
摘要: // 获取 minioClient getMinioClient(tempuser){ this.minioClient = new Minio.Client({ endPoint: '172.16.1.16', port: 9000, useSSL: false, region: 'kyc', a 阅读全文
posted @ 2022-04-03 10:45 pxuan 阅读(881) 评论(0) 推荐(0)
摘要: 1、查找文件 find / -name ‘filename’2、查找目录 find / -name ‘path’ -type d3、查找内容 find . | xargs grep -ri ‘content’ //find . | xargs grep -ril ‘content’ 只显示文件名称 阅读全文
posted @ 2022-03-23 16:55 pxuan 阅读(1458) 评论(0) 推荐(0)
摘要: 正则表达式 整数^[1-9]\d*$ //匹配正整数^-[1-9]\d*$ //匹配负整数^-?[1-9]\d*$ //匹配整数^[1-9]\d*|0$ //匹配非负整数(正整数 + 0)^-[1-9]\d*|0$ //匹配非正整数(负整数 + 0)^[1-9]\d*\.\d*|0\.\d*[1-9 阅读全文
posted @ 2021-07-13 10:10 pxuan 阅读(8001) 评论(0) 推荐(0)
摘要: public String getDataTotalSize(Context context){ StatFs sf = new StatFs(context.getCacheDir().getAbsolutePath()); long blockSize = sf.getBlockSize(); 阅读全文
posted @ 2021-06-13 17:13 pxuan 阅读(888) 评论(0) 推荐(0)
摘要: 启动 adb server 命令:adb start-server 停止 adb server 命令:adb kill-server 查询已连接设备/模拟器:adb devices推送已连接设备/模拟器:adb connect 172.16.1.28:5555安装设备/模拟器:adb install 阅读全文
posted @ 2021-06-04 14:34 pxuan 阅读(1225) 评论(0) 推荐(0)
摘要: 变量lower_case_table_names 为什么本地开发没问题,但是测试环境就提示表不存在呢?因为本地的windows开发环境,默认是大小写不敏感。而测试环境的linux是敏感的。 本地windows我们执行命令,查看自己电脑中的mysql系统变量可以看到: 1、进入mysql命令: mys 阅读全文
posted @ 2021-05-13 18:06 pxuan 阅读(329) 评论(0) 推荐(0)
摘要: 错误示范1(会影响其他页面的样式): <style> .avue-crud__menu { display: none; } </style>错误示范2(样式无效): <style lang="scss" scoped> .avue-crud__menu { display: none; } </s 阅读全文
posted @ 2021-05-07 16:59 pxuan 阅读(2601) 评论(0) 推荐(0)
摘要: https://avuejs.com/doc/crud/crud-dochttps://www.bookstack.cn/read/avue-2.x/391487d752fdf241.md表格属性 width: “100%”,//表格宽度 calcHeight: “auto”,//表格高度差(主要用 阅读全文
posted @ 2020-12-16 14:27 pxuan 阅读(12930) 评论(0) 推荐(0)
摘要: Dockerfile From centos:8 COPY ./kplayer /kplayer WORKDIR /kplayer EXPOSE 80 RUN chmod +x kplayer 查看配置文件cat /etc/kplayer.yaml 容器启动./kplayer -c /etc/kpl 阅读全文
posted @ 2020-12-03 10:37 pxuan 阅读(294) 评论(0) 推荐(0)
上一页 1 2 3 4 5 6 7 ··· 9 下一页