安装 淘宝镜像 npm install express --registry=https://registry.npm.taobao.org var app = require('http').createServer(handler), io = require('socket.io').listen(app), fs = require('fs')app.listen(808…
安装 淘宝镜像 npm install express --registry=https://registry.npm.taobao.org var app = require('http').createServer(handler), io = require('socket.io').listen(app), fs = require('fs')app.listen(808…
$User = M("User"); // 实例化User对象 $User->where('id=5')->setInc('score',3); // 用户的积分加3 $User->where('id=5')->setInc('score'); // 用户的积分加1 $User->where('id=5')-…
1、软件环境: Centos7、VMware 10.0、NodeJS v0.10.24 2、首先确认有nodejs编译及依赖相关软件,如果没有可通过运行以下命令安装。 [root@localhost sharing]# yum -y install gcc gcc-c++ openssl-devel 3、下载NodeJS源码包并解压。 [root@localhost sharing]#&nb…
jQuery.parent(expr) //找父元素 jQuery.parents(expr) //找到所有祖先元素,不限于父元素 jQuery.children(expr) //查找所有子元素,只会找到直接的孩子节点,不会返回所有子孙 jQuery.contents() &…