node 服务器占用的端口为 3000
方法一
1 | 在 ECS 安全组策略中开放 3000 端口,用 http://xxx.xxx.xxx:3000/ 访问 |
方法二
1 | 配置 nginx 代理: |
想学更多有意思的东西,想做自己的网站,想学画画
node 服务器占用的端口为 3000
1 | 在 ECS 安全组策略中开放 3000 端口,用 http://xxx.xxx.xxx:3000/ 访问 |
1 | 配置 nginx 代理: |
曾几何时,为了隐藏 video 的全屏按钮,好麻烦,要设置 controls 的宽度,把全屏按钮顶出去,还有兼容问题
现在可以直接用 controlsList 控制显示什么(只考虑 android 的话)
1 | <video controls controlsList='nofullscreen nodownload noremote footbar'></video> |
let arr = Array.from({ length:100 }, (v, k) => k + 1);
Rules -> Customize Rules…
Go -> to OnBeforeRequst
在 OnBeforeRequst 方法的开头添加内下内容:1
2
3
4if (oSession.isHTTPS){
oSession.fullUrl = "http://" + oSession.hostname + oSession.PathAndQuery;
}
注: 自测在 mi 6 系统浏览器里不好使,其它浏览器或 app 内没发现问题
android 一般装了 fiddler 的证书后就可以抓 https 包了,但 ios 有时不行,显示证书不被信任
自己的全局依赖(JS 实现),挂在 Vue.prototype 上,在其它 vue 中使用时,想有智能提示
想打开 element-ui 下的 message.d.ts 文件,但 node_modules 下有几百个依赖,找到 element-ui 要翻半天
使用扩展 search-node-modules