上一页 1 2 3 4 5 6 7 ··· 13 下一页
摘要: 1.下载文件 网站下载jdk:https://www.oracle.com/java/technologies/javase-downloads.html wgek命令下载:wget --no-check-certificate --no-cookies --header "Cookie: orac 阅读全文
posted @ 2020-08-21 14:24 智走 阅读(423) 评论(0) 推荐(0)
摘要: JavaScript文档:https://developer.mozilla.org/zh-CN/docs/Web/JavaScript/Reference/Global_Objects/Object 码云项目: https://gitee.com/wudibo/ok-admin 阅读全文
posted @ 2020-08-12 17:22 智走 阅读(102) 评论(0) 推荐(0)
摘要: centos7.x 安装 NodeJS、yarn、pm2 npm config set prefix "/usr/local/nodejs/node_global" npm config set cache "/usr/local/nodejs/node_cache" https://www.jia 阅读全文
posted @ 2020-08-09 00:40 智走 阅读(346) 评论(0) 推荐(0)
摘要: 一、使用jquery获取指定的宽高 width() - 返回元素的宽度。 height() - 返回元素的高度。 innerWidth() 方法返回元素的宽度(包括内边距)。 innerHeight() 方法返回元素的高度(包括内边距)。 outerWidth() 方法返回元素的宽度(包括内边距和边 阅读全文
posted @ 2020-06-16 03:13 智走 阅读(113) 评论(0) 推荐(0)
摘要: 一、jsdelivr 网址: https://www.jsdelivr.com/ 二、bootcdn 网址:https://www.bootcdn.cn/ 三、cdnjs 网址:https://cdnjs.com/ 阅读全文
posted @ 2020-06-11 19:15 智走 阅读(198) 评论(0) 推荐(0)
摘要: 参考博客:https://blog.csdn.net/odeng888/java/article/details/88591253 找到安装nginx的源码根目录,如果没有的话下载新的源码 http://nginx.org tar xvzf nginx-1.18.0.tar.gz 查看ngixn版本 阅读全文
posted @ 2020-06-01 22:33 智走 阅读(167) 评论(0) 推荐(0)
摘要: 服务器安装必要的环境:node、 pm2(node进程守护) 1.配置nginx文件 upstream nuxttest{ #分配需要代理的服务 server localhost:3000; #代理本地的nuxt服务 } server { listen 80; server_name www.tes 阅读全文
posted @ 2020-06-01 11:55 智走 阅读(4936) 评论(0) 推荐(0)
摘要: 一、更改项目的maven包目录 二、设置settings.xml ( apache-maven-3.6.0\conf\settings.xml) 在标签mirrors里边添加阿里提供的代理 <mirrors> <mirror> <id>alimaven</id> <name>aliyun maven 阅读全文
posted @ 2020-05-10 01:08 智走 阅读(1358) 评论(0) 推荐(1)
摘要: 1 清除首尾所有的逗号 "123,4564,aasb,".replace(/^,+|,+$/g, ''); 2 只允许大小写数字常用字符 /^[a-zA-Z0-9*#&$./!+@\-]+$/g 阅读全文
posted @ 2020-04-02 11:39 智走 阅读(103) 评论(0) 推荐(0)
摘要: 1.核心npm包 connect-history-api-fallback npm install --save connect-history-api-fallback 1.1这里使用koa扩展的包 koa-connect-history-api-fallback npm install --sa 阅读全文
posted @ 2020-03-18 11:15 智走 阅读(2364) 评论(0) 推荐(0)
上一页 1 2 3 4 5 6 7 ··· 13 下一页