打赏

04 2021 档案

摘要:1、页面正常关闭,如何通知 A 页面 页面正常关闭时,会先执行 window.onbeforeunload ,然后执行 window.onunload。 2、页面意外崩溃,又该如何通知 A 页面 利用 window 对象的 load 和 beforeunload 事件,通过心跳监控来获取 B 页面的 阅读全文
posted @ 2021-04-29 10:39 孟繁贵 阅读(104) 评论(0) 推荐(0) 编辑
摘要:1、页面正常关闭,如何通知 A 页面 页面正常关闭时,会先执行 window.onbeforeunload ,然后执行 window.onunload。 2、页面意外崩溃,又该如何通知 A 页面 利用 window 对象的 load 和 beforeunload 事件,通过心跳监控来获取 B 页面的 阅读全文
posted @ 2021-04-29 10:38 孟繁贵 阅读(185) 评论(0) 推荐(0) 编辑
摘要:https://blog.csdn.net/qq_41846861/article/details/88853217 阅读全文
posted @ 2021-04-15 19:49 孟繁贵 阅读(51) 评论(0) 推荐(0) 编辑
摘要:nginx在线配置: https://www.digitalocean.com/community/tools/nginx?domains.0.php.php=false&domains.0.reverseProxy.reverseProxy=true&domains.0.routing.root= 阅读全文
posted @ 2021-04-14 17:46 孟繁贵 阅读(450) 评论(0) 推荐(0) 编辑
摘要:npm 脚本有pre和post两个钩子。举例来说,build脚本命令的钩子就是prebuild和postbuild。 "prebuild": "echo I run before the build script", "build": "cross-env NODE_ENV=production w 阅读全文
posted @ 2021-04-14 17:39 孟繁贵 阅读(627) 评论(0) 推荐(0) 编辑
摘要:function parseParam(url) { const paramsStr = /.+\?(.+)$/.exec(url)[1]; // 将 ? 后面的字符串取出来 //exec() 方法用于检索字符串中的正则表达式的匹配。 const paramsArr = paramsStr.spli 阅读全文
posted @ 2021-04-14 09:54 孟繁贵 阅读(102) 评论(0) 推荐(0) 编辑
摘要:function render(template, data) { // 注意没有去掉插值表达式的两边的空格 const reg = /\{\{(\w+)\}\}/; // 模板字符串正则 // 如果字符串 string 中含有与 RegExpObject 匹配的文本,则返回 true,否则返回 f 阅读全文
posted @ 2021-04-14 09:34 孟繁贵 阅读(335) 评论(0) 推荐(0) 编辑
摘要:sharp https://github.com/lovell/sharp 阅读全文
posted @ 2021-04-11 20:38 孟繁贵 阅读(536) 评论(0) 推荐(0) 编辑
摘要:Playwright https://github.com/microsoft/playwright 阅读全文
posted @ 2021-04-11 19:27 孟繁贵 阅读(542) 评论(0) 推荐(0) 编辑
摘要:cheerio https://github.com/cheeriojs/cheerio 阅读全文
posted @ 2021-04-11 19:07 孟繁贵 阅读(66) 评论(0) 推荐(0) 编辑
摘要:https://hoppscotch.io/cn 阅读全文
posted @ 2021-04-11 18:41 孟繁贵 阅读(416) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2021-04-11 14:52 孟繁贵 阅读(28) 评论(0) 推荐(0) 编辑
摘要:使用ndb工具 https://www.npmjs.com/package/ndb sudo ndb yarn run start 或者 sudo ndb npm run start 即可(start是script的一个指令) 示例效果: 阅读全文
posted @ 2021-04-11 10:27 孟繁贵 阅读(124) 评论(0) 推荐(0) 编辑
摘要:ast解析: https://astexplorer.net/ 阅读全文
posted @ 2021-04-11 09:52 孟繁贵 阅读(379) 评论(0) 推荐(0) 编辑
摘要:js-beautify网址: https://beautifier.io/ 阅读全文
posted @ 2021-04-11 09:48 孟繁贵 阅读(2420) 评论(0) 推荐(0) 编辑

TOP