SuperYan - SuperYan https://www.hblyan.com/author/1/ zh-CN SuperYan Fri, 23 Aug 2024 22:05:00 +0800 Fri, 23 Aug 2024 22:05:00 +0800 【游戏】黑悟空 https://www.hblyan.com/archives/313.html https://www.hblyan.com/archives/313.html Fri, 23 Aug 2024 22:05:00 +0800 SuperYan 最近很火的一款游戏,但是由于最近心情原因,也感觉提不上劲头,先玩玩再说

买游戏了 300左右

]]>
0 https://www.hblyan.com/archives/313.html#comments https://www.hblyan.com/feed/author/1/
【不要踩坑】Jenkins npm install 报没有permission denied https://www.hblyan.com/archives/311.html https://www.hblyan.com/archives/311.html Wed, 14 Aug 2024 23:58:15 +0800 SuperYan 参考

]]>
0 https://www.hblyan.com/archives/311.html#comments https://www.hblyan.com/feed/author/1/
【解决方案】vue3 集成编辑器在线编写功能 https://www.hblyan.com/archives/310.html https://www.hblyan.com/archives/310.html Tue, 13 Aug 2024 18:03:56 +0800 SuperYan 背景: vue3 项目中使用 编辑器,本项目使用的mysql 编辑器以及相关的格式化 快捷键的功能

codemirror-editor-vue3

]]>
1 https://www.hblyan.com/archives/310.html#comments https://www.hblyan.com/feed/author/1/
【健身】相关书籍 https://www.hblyan.com/archives/309.html https://www.hblyan.com/archives/309.html Tue, 06 Aug 2024 16:20:00 +0800 SuperYan 【教练必读书单】8本好书帮你突破职涯瓶颈

健身必读书单

]]>
1 https://www.hblyan.com/archives/309.html#comments https://www.hblyan.com/feed/author/1/
批量写入 sql https://www.hblyan.com/archives/308.html https://www.hblyan.com/archives/308.html Wed, 31 Jul 2024 13:31:00 +0800 SuperYan DROP PROCEDURE IF EXISTS insert_multiple_times; //临时 DELIMITER // CREATE PROCEDURE insert_multiple_times() BEGIN DECLARE i INT DEFAULT 1; WHILE i <= 10 DO INSERT INTO `form` (`id`, `name`, `profession`, `faction`, `gender_identity`, `cause_of_death`, `introduction`, `evaluation`) VALUES ( '金克斯', '金溪·安', '探险家', '幻变族', '女', '在潘多拉星门对面失联', '尽管血统是得到启蒙的恐龙,但总是被套入到鸟的义体里——并对人们叫她鹦鹉感到生气并大喊大叫。一个老练的破门者。专长是侦察,也是一名出色的医生和狙击手,更是一本关于系外行星谣言、阴谋论、偶尔还有事实的活百科全书。', 'Astika:天才的专家和前辈。\nShrike:一只不会信任别人的鹦鹉。\nWhisper:很好心的朋友,总是很尊重别人的不同。'); SET i = i + 1; END WHILE; END; // DELIMITER ; CALL insert_multiple_times(); ]]> 1 https://www.hblyan.com/archives/308.html#comments https://www.hblyan.com/feed/author/1/ nginx 转发始终报错 503 426 https://www.hblyan.com/archives/305.html https://www.hblyan.com/archives/305.html Tue, 30 Jul 2024 18:07:00 +0800 SuperYan 背景:前端代理到网关域名,curl 、postman都是通的但是nginx转发不行!实际排查了十个小时左右。。。

原配置

location /pspd {
        proxy_pass http://xxx.com;
        proxy_set_header Host xxx.com; 
        proxy_set_header X-Real-IP $remote_addr;
        proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
    }

无能怒吼
nginx 反向代理默认走的http 1.0版本, 但是 被反向代理的服务器是1.1版本的 !或者更高的!

location /关键词 {
        proxy_http_version 1.1;   //很重要!!!!
        proxy_pass http://xxx.com;
        proxy_set_header Host xxx.com;  
        //Host 请求头指明了请求服务器的域名/IP地址和端口号。很重要!因为目标可能多个nginx 服务虚拟机 
        proxy_set_header X-Real-IP $remote_addr;
        proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;

}
]]>
0 https://www.hblyan.com/archives/305.html#comments https://www.hblyan.com/feed/author/1/
uniapp app运行到ios https://www.hblyan.com/archives/304.html https://www.hblyan.com/archives/304.html Mon, 29 Jul 2024 18:15:42 +0800 SuperYan 步骤
签名失败

]]>
0 https://www.hblyan.com/archives/304.html#comments https://www.hblyan.com/feed/author/1/
【babel插件】 js精度丢失解决 https://www.hblyan.com/archives/303.html https://www.hblyan.com/archives/303.html Fri, 26 Jul 2024 10:45:57 +0800 SuperYan 参考
但是字符串的 + 拼接直接被 报错了 需要 看一下

]]>
0 https://www.hblyan.com/archives/303.html#comments https://www.hblyan.com/feed/author/1/
【解决方案】前端发布新版本后用户页面资源丢失 https://www.hblyan.com/archives/302.html https://www.hblyan.com/archives/302.html Thu, 25 Jul 2024 15:44:34 +0800 SuperYan 参考

]]>
1 https://www.hblyan.com/archives/302.html#comments https://www.hblyan.com/feed/author/1/
vue-echarts series 保留了之前的数据 https://www.hblyan.com/archives/300.html https://www.hblyan.com/archives/300.html Fri, 02 Feb 2024 16:38:43 +0800 SuperYan 背景: 使用v-chart 组件 图表展示,因为series 数据我需要接口push 比如 之前是10 个 后面是2个 那么只会改前2个 数据 后面还会保留,当然 我不想要这个情况,找了很久才发现 它会自动合并配置包括这里series 数据
 <v-chart
        ref="planNumChartRef"
        style="height: 490px"
        :update-options="{notMerge:true}" //合并配置 关闭
        :option="planNumChartOption"
      ></v-chart>
]]>
0 https://www.hblyan.com/archives/300.html#comments https://www.hblyan.com/feed/author/1/