摘要: 用requests.put上传文件 files = {'file':open(filepath,'rb').read()} rs = requests.put(url=url, headers=headers,files=files) 上传成功后,打开上传成功的文件,发现请求头被写进了文件 --7d 阅读全文
posted @ 2020-09-23 11:38 醒日是归时 阅读(1554) 评论(0) 推荐(0) 编辑
摘要: Grafana集成进自己的监控项目 可能有需求是将grafana的dashboard集成到自己的监控系统里面,这样就避免了进grafana再查看 方案有是有,可能有点不安全,建议实在要这么干的话: 尽量是公司内部玩,也就是纯内网操作; 找IT设置网络访问权限,只有公司IP可以访问监控系统和grafa 阅读全文
posted @ 2020-09-17 10:27 醒日是归时 阅读(4069) 评论(0) 推荐(0) 编辑
摘要: 列表解析——用来动态地创建列表 [expr for iter_var in iterable if cond_expr] 生成1-100以内的偶数 a3 = [x for x in range(1,101) if x % 2==0] print (a3) 输出结果: [2, 4, 6, 8, 10, 阅读全文
posted @ 2020-09-16 20:07 醒日是归时 阅读(236) 评论(0) 推荐(0) 编辑
摘要: 主要是以下几行内容 add_header Access-Control-Allow-Origin *; add_header Access-Control-Allow-Methods 'GET,POST,OPTIONS'; add_header Access-Control-Allow-Header 阅读全文
posted @ 2020-09-11 16:19 醒日是归时 阅读(1263) 评论(0) 推荐(0) 编辑
摘要: 效果如图: js文件如下: $(function () { initTable() $('#load_vip').change(function () { $ .ajax({ type: 'POST', url: '/nginx/config/diff', data: {'load_vip': $( 阅读全文
posted @ 2020-09-08 21:01 醒日是归时 阅读(550) 评论(0) 推荐(0) 编辑
摘要: kubernetes API官方文档在github上经常打不开,于是就放在博客了,以下内容均复制于github All URIs are relative to http://localhost MethodHTTP requestDescription connect_delete_namespa 阅读全文
posted @ 2020-09-04 10:15 醒日是归时 阅读(2486) 评论(0) 推荐(0) 编辑
摘要: 1. @filter-change 要写在table根元素,也就是<el-table @filter-change="filterChange"></el-table> 2. 需要筛选的项,要写上 :column-key=" ' aaa ' " 3. 要搜索全局,就要去掉对应筛选项的 :filter 阅读全文
posted @ 2020-08-27 17:00 醒日是归时 阅读(5298) 评论(0) 推荐(0) 编辑
摘要: 查看K8S版本:kubectl version 查看K8S运行环境信息:kubectl cluster-info 查看master组件健康状态:kubectl get componentstatus 查看node健康状态:kubectl get nodes 查看node节点描述:kubectl de 阅读全文
posted @ 2020-08-27 09:53 醒日是归时 阅读(401) 评论(0) 推荐(0) 编辑
摘要: better-scroll github 最近项目使用了better-scroll这个插件,这个插件用起来还是有不少问题的。 除了普遍会遇到的无法滚动、无法点击等问题,这些作者都已经说得很清楚了。下面说说我遇到的其他问题及解决方法。 1.无法响应鼠标滚轮滚动: 无法点击大家都知道了,在创建bscro 阅读全文
posted @ 2020-08-25 12:58 醒日是归时 阅读(1460) 评论(0) 推荐(0) 编辑
摘要: 1、table 部分 :row-key='getRowKeys':expand-row-keys="expands"@expand-change="expandSelect" 2、column 部分 :参见官方示例 <el-table-column type="expand" > <template 阅读全文
posted @ 2020-08-20 16:45 醒日是归时 阅读(1320) 评论(0) 推荐(0) 编辑