会员
周边
新闻
博问
闪存
众包
赞助商
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
pxuan
博客园
首页
新随笔
联系
管理
订阅
上一页
1
2
3
4
5
6
7
···
9
下一页
2022年4月8日
el-upload 传参
摘要: 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)
2022年4月3日
minio临时凭证 下载大文件合并UInt8Arrays
摘要: // 获取 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)
2022年3月23日
Centos7 中查找文件、目录、内容、命令访问网页
摘要: 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)
2021年7月13日
前端Vue中常用rules校验规则
摘要: 正则表达式 整数^[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
阅读(7999)
评论(0)
推荐(0)
2021年6月13日
Android 获取系统存储空间大小(不是内存)
摘要: 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)
2021年6月4日
Android Debug Bridge(安卓调试桥)
摘要: 启动 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)
2021年5月13日
MySQL表名大小写敏感
摘要: 变量lower_case_table_names 为什么本地开发没问题,但是测试环境就提示表不存在呢?因为本地的windows开发环境,默认是大小写不敏感。而测试环境的linux是敏感的。 本地windows我们执行命令,查看自己电脑中的mysql系统变量可以看到: 1、进入mysql命令: mys
阅读全文
posted @ 2021-05-13 18:06 pxuan
阅读(329)
评论(0)
推荐(0)
2021年5月7日
Vue 使用/deep/在当前页面修改Avue-CRUD组件的默认样式
摘要: 错误示范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)
2020年12月16日
Avue前端控件大全和表格属性
摘要: 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)
2020年12月3日
kplayer 容器配置
摘要: 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
下一页
公告