会员
众包
新闻
博问
闪存
赞助商
HarmonyOS
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
且听风吟V
博客园
首页
新随笔
联系
管理
订阅
上一页
1
2
3
4
5
6
7
8
9
10
···
14
下一页
2017年12月13日
移动端去掉滚动条
摘要: html,body{ height: 100%;}::-webkit-scrollbar{ width: 0;}body,#app{ width:100%; overflow-x: hidden;}#app{ height: 100%; padding-bottom: 60px; box-sizin
阅读全文
posted @ 2017-12-13 16:30 且听风吟V
阅读(624)
评论(0)
推荐(0)
2017年11月29日
pm2
摘要: npm install -g pm2 pm2 start app.js pm2 stop all pm2 restart app.js
阅读全文
posted @ 2017-11-29 15:42 且听风吟V
阅读(267)
评论(0)
推荐(0)
MongoDB 后台启动
摘要: mkdir /data/mongo/mongodb.cnf、 配置 后台启动 # vi /data/mongo/mongodb.cnf dbpath=/data/mongo/ logpath=/data/mongo/mongo.log logappend=true fork=true port=27
阅读全文
posted @ 2017-11-29 10:22 且听风吟V
阅读(8635)
评论(1)
推荐(1)
2017年11月28日
linux 安装git
摘要: 1、介绍 而很多yum源上自动安装的git版本为1.7,所以需要掌握手动编译安装git方法。 2、安装git依赖包 yum install curl-devel expat-devel gettext-devel openssl-devel zlib-devel gcc perl-ExtUtils-
阅读全文
posted @ 2017-11-28 10:06 且听风吟V
阅读(277)
评论(0)
推荐(0)
2017年11月9日
Bootstrap
摘要: 栅格 container下 row一行12格 col 内1-12 设置响应式 xs-手机 sm-平板 md-中屏 lg-巨屏
阅读全文
posted @ 2017-11-09 03:57 且听风吟V
阅读(287)
评论(0)
推荐(0)
ES6
摘要: 一、 let 取代 var 让变量没有副作用 let 增加了块级作用域 二、 const 常量 声明后不可改变 类似 java里的final
阅读全文
posted @ 2017-11-09 01:02 且听风吟V
阅读(300)
评论(0)
推荐(0)
2017年11月6日
JS模块化
摘要: 会输出 A.JS里的内容 node B.js 执行 (三)ADM规范 AMD规范是"Asynchronous Module Definition"的缩写 意思就是异步模块定义 AMD更适合浏览器加载 AMD也是用require()语句加载模块,但是不同于CommonJS,它要求两个参数 requir
阅读全文
posted @ 2017-11-06 00:13 且听风吟V
阅读(294)
评论(0)
推荐(0)
2017年10月24日
linux
摘要: Linux 运行jar包命令如下: 方式一: [plain] view plain copy java -jar XXX.jar [plain] view plain copy [plain] view plain copy 特点:当前ssh窗口被锁定,可按CTRL + C打断程序运行,或直接关闭窗
阅读全文
posted @ 2017-10-24 23:41 且听风吟V
阅读(270)
评论(0)
推荐(0)
2017年10月12日
postgresql
摘要: bin psql.exe -U postgres password CREATE SEQUENCE user_id_seq START WITH 1 INCREMENT BY 1 MINVALUE 1 NO MAXVALUE;CREATE TABLE "public"."users" ( "id"
阅读全文
posted @ 2017-10-12 02:14 且听风吟V
阅读(346)
评论(0)
推荐(0)
2017年5月20日
AJAX初步
摘要: Ajax: javascript and xml 异步的JS 和XML -->客户端JS中的方法,用来向服务端发送请求(还可以传递给服务器),然后把服务器端返回 的内容获取到(AJAX一般是运行在客户端的浏览器中的) AJAX四步: //创建一个AJAX对象(下面的写法在IE6及更低的版本的浏览器中
阅读全文
posted @ 2017-05-20 02:28 且听风吟V
阅读(513)
评论(0)
推荐(0)
上一页
1
2
3
4
5
6
7
8
9
10
···
14
下一页
公告