使用mysql连接池:1.安装mysql支持npm install mysql 2.安装node.js的mysqlpool模块npm install -g node-mysql //-g表全局 3.直连mysqlvar mysql = require('mysql'); //调用MySQL模块//创 ...
分类:
数据库 时间:
2017-08-27 11:55:57
阅读次数:
230
一、单行文本 注:white-space:normal(默认,空白会被浏览器忽略)|pre(空白会被浏览器保留,行为方式如同<pre>标签)|nowrap(文本不换行,直到遇到<br />标签)|pre-wrap(保留空白并正常换行)|pre-line(合并空白并换行)|inherit(继承); 二 ...
分类:
其他好文 时间:
2017-08-27 11:55:48
阅读次数:
169
var async = require('async'); //串行无关联series//串行有关联waterfallasync.waterfall([ function(cb) { setTimeout(function(){ console.log('111111111'); cb(null, ...
分类:
Web程序 时间:
2017-08-27 11:55:42
阅读次数:
195
说明: (1).本手册只挑选了有用的信息进行翻译,如要查看完完整整的内容,请自行info sort。 (2).译文中,在括号中使用了"注"的,为本人所加,非原文内容,助于理解和说明。 (3).本文的sort命令为CentOS 7.2上的,版本为sort (GNU coreutils) 8.22,有些 ...
分类:
系统相关 时间:
2017-08-27 11:55:34
阅读次数:
306
注:本文中提到的所有测试都是基于谷歌浏览器。 最近在做一个练习的时候,遇到了这种情况: 图片下方有很小的一段空隙,如果要对图片下方紧挨着的元素设置边框或是其他背景色,中间的空隙就会很突兀。 为了解决这种情况,经过查阅网上的各种资料,我发现使用vertical-align:bottom;可以解决这个问 ...
分类:
Web程序 时间:
2017-08-27 11:55:24
阅读次数:
174
http://cnodejs.org/topic/54acfbb5ce87bace2444cbfb 先安装:G:\www\nodejs\one\models>npm install async --save-dev 1.串行无关联:async.series(tasks,callback);多个函数依 ...
分类:
其他好文 时间:
2017-08-27 11:55:14
阅读次数:
134
Django -- 高级知识点 高级知识点包括: 静态文件处理 中间件 上传图片 Admin站点 分页 使用jquery完成ajax 管理静态文件 项目中的CSS、图片、js都是静态文件 配置静态文件 在settings 文件中定义静态内容 在项目根目录下创建static目录,再创建当前应用名称的目 ...
分类:
其他好文 时间:
2017-08-27 11:55:05
阅读次数:
170
You are given an integer array nums and you have to return a new counts array. The counts array has the property where counts[i] is the number of smal ...
分类:
其他好文 时间:
2017-08-27 11:54:58
阅读次数:
139
var async = require('async'); //串行无关联series//串行有关联waterfall//并行:parallel //会把各个函数的执行结果一起放到最后的回调中async.parallel([ function(cb) { setTimeout(function(){ ...
分类:
Web程序 时间:
2017-08-27 11:54:51
阅读次数:
215
In the country of ALPC , Xiaoqian is a very famous mathematician. She is immersed in calculate, and she want to use the minimum number of coins in eve ...
分类:
其他好文 时间:
2017-08-27 11:54:42
阅读次数:
236
Linux的tail/tailf命令使用了内核提供的inotify功能,下面的Python例子也使用inotify实现比tail/tailf更强的监控文件功能。 被监控的文件做改名、删除、创建的操作都可以继续监控。 ...
分类:
其他好文 时间:
2017-08-27 11:54:33
阅读次数:
263
分区列规则 分区列存在于每个成员表上,并且通过 CHECK 约束标识特定表中的可用数据。分区列必须遵守如下规则: 每个基表都拥有键值由 CHECK 约束所强制的分区列。每个表的 CHECK 约束的键范围与其它任何表互不重叠。任何分区列的给定值必须只能映射到一个表。CHECK 约束只能使用以下运算符: ...
分类:
数据库 时间:
2017-08-27 11:54:25
阅读次数:
302
参考文献:cnblogs.com/lovevivi/archive/2013/07/24/3210864 ...
分类:
系统相关 时间:
2017-08-27 11:54:17
阅读次数:
144
Given numRows, generate the first numRows of Pascal's triangle. For example, given numRows = 5,Return [ [1], [1,1], [1,2,1], [1,3,3,1], [1,4,6,4,1] ] ...
分类:
其他好文 时间:
2017-08-27 11:54:07
阅读次数:
128
var async = require('async'); //串行无关联async.series({ one:function(cb) { setTimeout(function(){ console.log('111111111'); cb('有错', 1); }, 3000); }, two: ...
分类:
Web程序 时间:
2017-08-27 11:53:59
阅读次数:
206
Given a List of words, return the words that can be typed using letters of alphabet on only one row's of American keyboard like the image below. Examp ...
分类:
其他好文 时间:
2017-08-27 11:13:35
阅读次数:
202