nodejs
金刚腿
这个作者很懒,什么都没留下…
展开
-
mongoose关联查询并筛选子集数据
模拟数据 city表 { "_id": { "$oid": "5f3b38a02e53c81ce4073d77" }, "status": { "$numberInt": "1" }, "add_time": { "$numberDouble": "1597716640324" }, "title": "北京", } food表 cid与city表_id关联 { _id:5f3a30c102108原创 2020-09-21 10:04:43 · 980 阅读 · 0 评论 -
mongoose从被关联模型中查询关联模型数据
数据如下 被关联数据-articleKeywords表: { "_id": { "$oid": "5f3b38a02e53c81ce4073d77" }, "status": { "$numberInt": "1" }, "add_time": { "$numberDouble": "1597716640324" }, "title": "北京", "__v": { "$nu.原创 2020-08-18 11:30:02 · 448 阅读 · 0 评论 -
CentOS 7 nginx部署及ssl配置
80端口部署(http) server { listen 80 default_server; listen [::]:80 default_server; server_name domain.com www.domain.com; root /home/client/; location / { try_files $uri $uri/ /index.html; } location /api {原创 2020-08-05 15:40:18 · 270 阅读 · 0 评论 -
express+mongodb的总结
express+mongodb的总结 转载请注明出处(https://blog.peterzhu.club/2018/12/12/express-mongodb-ejs练习/)原创 2018-12-12 16:37:48 · 212 阅读 · 0 评论 -
nodejs----mongoDB操作封装使用
nodejs----mongoDB操作封装使用 转载请注明出处(https://blog.peterzhu.club/2018/12/12/mongodb操作封装/)原创 2018-12-12 16:39:16 · 853 阅读 · 0 评论 -
node操作mysql的简易配置及使用
安装Node的MySQL模块,方法有两种: 一种是手动在package.json中添加依赖(dependencies),然后执行 npm install。 一种是直接执行 npm install mysql。 package.json示例: { "name": "test", "version": "0.0.0", "private": true, "scripts": {原创 2018-12-15 11:38:19 · 271 阅读 · 0 评论