diff --git a/controllers/article.js b/controllers/article.js index e69de29..b45a0be 100644 --- a/controllers/article.js +++ b/controllers/article.js @@ -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 +}; \ No newline at end of file