摘要:
1 2 3 4 5 Document 6 7 8 9 222210 222211 222212 222213 222214 15 16 28 29 阅读全文
摘要:
https://cnodejs.org/topic/5378720ed6e2d16149fa16bd 阅读全文
摘要:
1 { 2 "__v": 1, 3 "_id": "538f5f0f6195a184108c8bd8", 4 "title": "GameTitle", 5 "item": [{ 6 "_id": "538f5f0f6195a184108c8bd6", 7 "nam... 阅读全文
摘要:
1 2 3 4 5 Document 6 7 8 30 31 阅读全文
摘要:
1 /* jshint -W079 */ 2 /* jshint -W020 */ 3 4 "use strict"; 5 var _ = require("lodash"); 6 7 module.exports = function(utils, db) { 8 // Model ... 阅读全文
摘要:
1 //两种路由写法,一种封装成函数,返回结果,此种方法可以传递参数, 2 "use strict"; 3 var _ = require("lodash"); 4 var express = require('express'); 5 var router = express.Router();... 阅读全文
摘要:
http://kirochen.com/2015/07/09/about-cookie-session/# 阅读全文
摘要:
http://kirochen.com/2015/09/04/about-mongoose/ 阅读全文
摘要:
a() && b() :如果执行a()后返回true,则执行b()并返回b的值;如果执行a()后返回false,则整个表达式返回a()的值,b()不执行;a() || b() :如果执行a()后返回true,则整个表达式返回a()的值,b()不执行;如果执行a()后返回false,则执行b()并返回... 阅读全文