-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapi.js
36 lines (31 loc) · 1.11 KB
/
api.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
const db = require('./db');
const models = db.Models;
const Status = db.Status;
const express = require('express');
const router = express.Router();
const responseFormator = require('./Utils/ResponseFormator')
/************** 创建(create) 读取(get) 更新(update) 删除(delete) **************/
// 创建账号接口
router.post('/createDiaryRecord',(req,res) => {
// 这里的req.body能够使用就在index.js中引入了const bodyParser = require('body-parser')
let newRecordParams = {
Title : req.body.title,
Content : req.body.content,
CreactDate : new Date(),
LastEditDate : new Date(),
Status : Status.Normal,
Author : req.body.author?req.body.author:'ohyeah'
};
let newRecord = new models.Diary(newRecordParams);
// 保存数据newRecord数据进mongoDB
newRecord.save((err,data) => {
res.send(responseFormator(err,data));
});
});
router.get('/getDiaryRecord',(req,res) => {
// 通过模型去查找数据库
models.Diary.find((err,data) => {
res.send(responseFormator(err,data));
});
});
module.exports = router;