摘要:
1 var rs = db.fs.files.aggregate([ 2 {$group: {_id: '$metadata.cas', count: {$sum: 1}}}, 3 {$match: {count: {$gt: 1}}} 4 ]) 5 6 //print(rs); 7 for(var i in rs.result){ 8 var coun... 阅读全文
摘要:
1 /* 2 * 封装$.ajax函数 3 * =============*/ 4 $.Ajax = function(url, options){ 5 if(typeof options == 'undefined'){ 6 options = url; 7 } 8 if(typeof url == 'string'){ 9 ... 阅读全文
摘要:
1 /* 2 * 日期格式化 3 * =========*/ 4 function dateformat(date, format){ 5 var paddNum = function(num){ 6 num += ""; 7 return num.replace(/^(\d)$/, "0$1"); 8 } 9 if(... 阅读全文
摘要:
如果在执行git push origin master过程中报错如下: 则表示远程仓库代码与本地仓库代码产生版本冲突,需要将远程仓库代码pull到本地 完成上面步骤之后,就可以将本地代码推送到远程仓库啦! 至此本地项目导入远程仓库完成~ 附上git删除远程文件命令 删除完成之后,commit、pus 阅读全文
摘要:
1、接口实现 2、接口的特殊实现通过适配器兼容工作,两种方式。 a、类适配(适配器继承特殊实现) b、对象适配(特殊实现声明为适配器属性) 阅读全文
摘要:
1 SELECT IF(ed.id IS NULL, '0', ed.id) id, IF(ed.name IS NULL, '其他', ed.name) name, COUNT(up.uid) memberCount, IF(ed.create_time IS NULL, NOW(), ed.create_time) create_time FROM user_profile up 2 ... 阅读全文
摘要:
1 @Override 2 public List listByAll(String... fields) { 3 DetachedCriteria dc = DetachedCriteria.forClass(ArtVenue.class); 4 if(fields != null && fields.length > 0){ 5 ... 阅读全文
摘要:
1 /* 2 * 绑定element resize事件 3 * =====================*/ 4 resize: function(element, callback){ 5 var delay = 500; //window resize事件延时500毫秒 6 ... 阅读全文
摘要:
UPDATE enrolment SET create_time = CONCAT('2016-01-', FLOOR(RAND() * 6 + 1), ' ', FLOOR(RAND() * 24), ':', FLOOR(RAND() * 59), ':', FLOOR(RAND() * 59)... 阅读全文
摘要:
1 /* 2 * 添加数据之后报名人数加一 3 */ 4 DELIMITER $$ 5 CREATE TRIGGER trigger_insert_enrolment_party_info 6 AFTER INSERT ON `enrolment` 7 FOR EACH ROW... 阅读全文