文章增删改查
This commit is contained in:
parent
f1064e5aca
commit
59a60ce214
@ -0,0 +1,32 @@
|
|||||||
|
var ObjectID = require('mongodb').ObjectID;
|
||||||
|
var articlefind = async (ctx, next) => {
|
||||||
|
let articlelist;
|
||||||
|
await dbs.find("articlelists").then((res) => {
|
||||||
|
articlelist = res.data
|
||||||
|
ctx.body=articlelist
|
||||||
|
})
|
||||||
|
}
|
||||||
|
var articleadd = async (ctx, next) => {
|
||||||
|
let month=parseInt(new Date(Date.now()).getMonth())+1
|
||||||
|
await dbs.add("articlelists", { articletitle:ctx.query.title, date: new Date(Date.now()).getFullYear ()+ '/' + month+ '/' + new Date(Date.now()).getDay() + ' ' + new Date(Date.now()).getHours() + ':' + new Date(Date.now()).getMinutes() + ':' + new Date(Date.now()).getSeconds(), type: ctx.query.type, tags:ctx.query.tags})
|
||||||
|
console.log(ctx.query)
|
||||||
|
ctx.body = "添加成功"
|
||||||
|
}
|
||||||
|
var articledel=async(ctx,next)=>{
|
||||||
|
await dbs.remove("articlelists",{_id:ObjectID(ctx.query.id)}).then((res)=>{
|
||||||
|
console.log(res)
|
||||||
|
console.log(ctx.query)
|
||||||
|
})
|
||||||
|
ctx.body="删除成功"
|
||||||
|
}
|
||||||
|
var articleupdate=async (ctx,next)=>{
|
||||||
|
let month=parseInt(new Date(Date.now()).getMonth())+1
|
||||||
|
|
||||||
|
await dbs.update("articlelists",ctx.query.old,ctx.query.new)
|
||||||
|
}
|
||||||
|
module.exports = {
|
||||||
|
'GET /articleadd': articleadd,
|
||||||
|
'GET /articlefind': articlefind,
|
||||||
|
'GET /articledel': articledel,
|
||||||
|
'GET /articleupdate': articleupdate
|
||||||
|
};
|
Loading…
Reference in New Issue
Block a user