上一页 1 2 3 4 5 6 ··· 18 下一页
摘要: 在vue-elementui中使用el-table,当type="selection"的时候,分页数据进行不同页跳转选择 需要这种功能的时候我们需要在el-table的标签上为每个el-table-column都创建一个id;所以就用到 了row-key="id"这个属性;然后我们就需要在el-ta 阅读全文
posted @ 2024-06-03 11:15 醒日是归时 阅读(235) 评论(0) 推荐(0) 编辑
摘要: 背景 网络架构中需要遇到apisix,想做个apisix 访问出错的兜底方案 nginx配置 其中http://11.11.11.11:9080 是apisix访问地址 server { listen 80; server_name sfimplat; index index.html index. 阅读全文
posted @ 2024-04-26 18:15 醒日是归时 阅读(43) 评论(0) 推荐(0) 编辑
摘要: Http状态码502常见原因及排错思路 502表示Bad Gateway。当Nginx返回502错误时,通常表示Nginx作为代理服务器无法从上游服务器(如:我们的后端服务器地址)获取有效的响应。导致这种情况的原因有很多: 1、后端服务器故障 2、nginx配置问题 3、高负载或者资源耗尽 4、ng 阅读全文
posted @ 2024-03-12 10:42 醒日是归时 阅读(4300) 评论(0) 推荐(0) 编辑
摘要: 概要参数 1、requests => 资源请求总数; 2、transferred => 网络加载资源大小; 3、resources => 页面所有资源总大小(包含网络资源、浏览器缓存解析后的资源等); 4、Finish => 所有请求从发起到响应完成时间(注意:请求不只是XHR,页面请求和页面解析也 阅读全文
posted @ 2024-02-02 10:18 醒日是归时 阅读(145) 评论(0) 推荐(0) 编辑
摘要: 一、前言 当运行 ETCD 日志报 Erro: mvcc database space exceeded 时,或者查看健康状态显示 failed to commit proposal: Active Alarm(s): NOSPACE 说明ETCD存储不足了(默认ETCD存储是2G),配额会触发告警 阅读全文
posted @ 2024-01-17 14:22 醒日是归时 阅读(294) 评论(0) 推荐(0) 编辑
摘要: 1. 怎么定义ngx自定义变量 ngx.var.custom_var nginx_config: # config for render the template to generate nginx.conf ... ... ... http_server_configuration_snippet 阅读全文
posted @ 2024-01-15 16:31 醒日是归时 阅读(116) 评论(0) 推荐(0) 编辑
摘要: 1、数组元素量级大而合并次数少时,性能对比: concat() > push() > […array1,…array2] 2、数组元素少但合并次数多时,性能对比: push() > concat() > […array1,…array2] 参考资料:http://www.seozhijia.net/ 阅读全文
posted @ 2024-01-08 17:55 醒日是归时 阅读(65) 评论(0) 推荐(0) 编辑
摘要: import QRCode from 'qrcode'; QRCode.toDataURL(res.data.qrcodeUrl, { margin: 2, type: 'image/jpeg', quality: 0.3 }, (error, url) => { if (error) consol 阅读全文
posted @ 2024-01-05 10:31 醒日是归时 阅读(7) 评论(0) 推荐(0) 编辑
摘要: 读写文件的模式 r - 读取模式w - 写入模式(覆盖现有内容) a - 附加模式(附加在现有内容之后) b - 二进制模式 r+ - 读取更新模式(现有数据保留) w+ - 写入更新模式(现有数据擦除) a+ - 附加更新模式(现有数据保留,只在文件末尾附加) do --read data fro 阅读全文
posted @ 2023-12-27 17:59 醒日是归时 阅读(153) 评论(0) 推荐(0) 编辑
摘要: 痛点 在一些场景中,需要把一些大文件(几 GB 到 几十 GB)传输到服务器上,理论可用的方法有 通过 http 上传、ssh(scp) 等方法;但 http 上传的逻辑中,需要将文件拷贝至磁盘中某个缓冲区,如此一来不仅需要等待拷贝,还可能面临磁盘空间不足等问题;如果是使用 ssh 等软件,比如 t 阅读全文
posted @ 2023-12-27 14:43 醒日是归时 阅读(73) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 ··· 18 下一页