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 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63
|
module.exports = app => { const express = require('express') const anth = require('../../utils/auth') const router = express.Router({ mergeParams: true, }) router.post('/', async (req, res) => { const model = await req.model.create(req.body) res.send(model) }) router.get('/', async (req, res) => { const queryOption = {} if (req.model.modelName == 'Category') { queryOption.populate = 'parent' } if (req.model.modelName == 'Article') { queryOption.populate = 'categories' } const items = await req.model.find().setOptions(queryOption).limit(10) res.send(items) }) router.get('/:id', async (req, res) => { const model = await req.model.findById(req.params.id) res.send(model) }) router.put('/:id', async (req, res) => { const model = await req.model.findByIdAndUpdate(req.params.id, req.body) res.send({ msg: '修改成功' }) }) router.delete('/:id', async (req, res) => { await req.model.findByIdAndDelete(req.params.id) res.send({ msg: '删除成功' }) })
app.use( '/admin/api/rest/:resourse', (req, res, next) => { const MODEL_NAME = require('inflection').classify(req.params.resourse)
req.model = require(`../../models/${MODEL_NAME}`) next() }, router ) }
|