打赏
摘要: 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 孟繁贵 阅读(449) 评论(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 孟繁贵 阅读(626) 评论(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) 编辑
TOP