摘要:
1.jade jade1.js 项目部署: 输出结果: 阅读全文
摘要:
DEMO 01.JS FORM.HTML 效果: webstrom输出效果: DEMO 输出结果: 阅读全文
摘要:
fs.readFile(path[, options], callback) path <string> | <Buffer> | <URL> | <integer> 文件名或文件描述符。 options <Object> | <string> encoding <string> | <null> 阅读全文
摘要:
条件查询 Model.find(conditions, [fields], [options], [callback]) demo1 try.js 在robo查看数据库: 在webstorm 中查看输出结果: demo2 try.js 输出结果: 年龄查询 在robo查看数据库: try.js 数量 阅读全文
摘要:
删除 Model.remove(conditions, [callback]) try.js 删除前robo的数据库: 执行删除: 在webstorm的输出结果: 在rob看到删除成功: Model.findByIdAndRemove(id, [options], [callback]) try.j 阅读全文
摘要:
更新 Model.update(conditions, update, [options], [callback]) user.js try.js 更新后: findByIdAndUpdate,这种比较有指定性,就是根据_id Model.findByIdAndUpdate(id, [update] 阅读全文