Merge branch 'zj' of pplokijuhyg/blog-server into master

This commit is contained in:
asd 2019-11-13 12:47:56 +08:00
commit e33da71214

View File

@ -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
};