页面1: index.html 1 <!DOCTYPE html> 2 <html> 3 <head> 4 <meta charset="UTF-8"> 5 <title>index</title> 6 </head> 7 <body> 8 <!--#include virtual="common/ ...
分类:
Web程序 时间:
2021-07-02 16:41:40
阅读次数:
0
问题重现 在 vue-cli 中,使用 eslint 时会对代码进行校验,其在 .vue 文件中支持的是不缩进,如下所示:在这里插入图片描述。而在 webstorm 中使用格式化代码会将代码格式化为:这样就不符合eslint的要求了。 解决办法 WebStrom 默认格式化规则,会将 html 文件 ...
分类:
Web程序 时间:
2021-07-02 16:10:27
阅读次数:
0
http://nginx.org/en/download.html ``` mac安装 nginx Mac:brew install nginx ``` 出错提示。参考一下链接 #### mac环境下brew command not found错误的解决方法 http://www.chenxm.cc ...
分类:
系统相关 时间:
2021-07-02 15:42:25
阅读次数:
0
SCRIPT 命令 Redis 提供了以下几个 SCRIPT 命令,用于对脚本子系统(scripting subsystem)进行控制: SCRIPT FLUSH :清除所有脚本缓存 SCRIPT EXISTS sha1 [sha1 …] :根据给定的脚本校验和,检查指定的脚本是否存在于脚本缓存 S ...
分类:
其他好文 时间:
2021-07-02 15:33:20
阅读次数:
0
环境 centos 7 安装依赖包 yum install -y gcc gcc-c++ glibc glibc-devel pcre pcre-devel zlib zlib-devel openssl openssl-devel \unzip psmisc bash-completion lib ...
分类:
系统相关 时间:
2021-07-01 17:29:41
阅读次数:
0
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <script src="https://unpkg.com/vue/dist/vue.js"></script> </head> <body> <div id="app"> <p>{{ mes ...
分类:
其他好文 时间:
2021-07-01 17:16:20
阅读次数:
0
一.多节点启动 节点1:1.117.173.54:8080 节点2:1.117.173.54:8088 二.配置nginx集群访问 在server结点上方添加 upstream lbs { server 1.117.173.54:8080; server 1.117.173.54:8088; 在se ...
<a href="javascript:location.reload();">刷新页面</a> ...
分类:
其他好文 时间:
2021-07-01 16:37:56
阅读次数:
0
近日,查看网站快照时,发现从百度快照页点击过去后,都跳转到了一个体裁站,但是直接访问,没有任何跳转,打开页面发现有一个js文件被篡改了。代码如下: 1 <script type="text/javascript"> 2 var je1 = /(sogou|soso|baidu|google|youd ...
分类:
Web程序 时间:
2021-07-01 16:30:31
阅读次数:
0
0到100 /^([1-9]?\d|100)$/0到120 /^([1-9]?\d|1[0-1]\d|120)$/0到12 /^(0|[1-9]|1[0-2])$/0到99 /^([1-9]?\d|100)$/0到1000 /^0$|^[1-9][0-9]{0,2}$|^1000$/0到2000 / ...
分类:
编程语言 时间:
2021-07-01 16:22:35
阅读次数:
0