Posts
All the articles I've posted.
mongoose分页查询
Published: at 10:52 AMPAGECOUNT:每个页面的item数 page:当前页面标号 schema.find(query) .skip(PAGECOUNT (page - 1)) .limit(PAGECOUNT) .sort({ id -1 }) .exec(); ...
DeprecationWarning Mongoose mpromise (mongoose's default promise library) is deprecated
Published: at 10:42 AM去掉这个警告的方法: --- var mongoose = require('mongoose'); mongoose.Promise = global.Promise; ...
mmbiz.qpic.cn图片防盗链
Published: at 01:53 AM先来了解一下什么是防盗链系统吧,只想知道解决方法的可以跳过直接看底部。 什么是防盗链系统 --- 在确保地址正确的情况下,不能下载相应的资源,均是受到防盗链系统的影响,那么究竟什么是防盗链系统呢?防盗链自然就是防范盗链,所以这里先说一下什么是盗链。 ...
webstorm eap 免费版
Published: at 02:25 PMhttp//confluence.jetbrains.com/display/WI/WebStorm+EAP(http//confluence.jetbrains.com/display/WI/WebStorm+EAP)...
网页上传图片失败
Published: at 02:24 PM用chrome上传图片一直失败,原因可能是安装了屏蔽插件造成的。直接换IE就成功了!...
ubuntu上安装最新版nodejs
Published: at 03:53 PM如:当前版本是v6.9.2 > curl -0 https//nodejs.org/dist/v6.9.2/node-v6.9.2.tar.gz tar -xzvf node-v6.9.2.tar.gz cd node-v6.9.2 ./configure make make install ...
linux git ssh配置
Published: at 03:49 PMgit config —global user.name “tujiaw” - git config —global user.email “tujiaw@163.com” - cd /.ssh - ssh-keygen -t rsa -C “tujiaw@163.com” - 直接按回车,目录下会产品两个文件:idrsa和idrsa.pub 打开idrsa.pub文件 vi idrsa.pub 拷贝里面...
windows 获取剪切板中的图片大小
Published: at 03:40 PMpragma once class cliboarddata { public static bool getImageSize(int &width, int &height); static unsigned int getLastError(); }; include "cliboarddata.h" include <stdint.h> include <Windows.h> typedef struct { uint...
Qt自定义MessageBox
Published: at 03:39 PM1. 继承自QDialog; 2. exec方法显示窗口; 3. done方法关闭窗口,填入参数的值就是exec的返回值。...
存储git账号信息不用每次都输入
Published: at 03:39 PM存储账号密码 在.git目录下的config文件中增加如下: credential helper = store ...