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