Merge branch 'zj' of pplokijuhyg/blog-server into master
This commit is contained in:
commit
b4ad8cc352
@ -11,8 +11,21 @@ var articlefind = async (ctx, next) => {
|
||||
// 添加文章
|
||||
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()).getDate() + ' ' + new Date(Date.now()).getHours() + ':' + new Date(Date.now()).getMinutes() + ':' + new Date(Date.now()).getSeconds(),content:ctx.query.content,uid:1})
|
||||
console.log(ctx.query)
|
||||
// await dbs.add("articletag",{articleid:ctx.query.articleid,tagid:ctx.query.tagid})
|
||||
// await dbs.add("articlelists", { articletitle:ctx.request.body.title, date: new Date(Date.now()).getFullYear ()+ '/' + month+ '/' + new Date(Date.now()).getDate() + ' ' + new Date(Date.now()).getHours() + ':' + new Date(Date.now()).getMinutes() + ':' + new Date(Date.now()).getSeconds(),content:ctx.request.body.content,uid:1})
|
||||
await dbs.find("idadd").then((res)=>{
|
||||
console.log(res.data[res.data.length-1].num_key)
|
||||
let tags=ctx.request.body.tags.split(",")
|
||||
console.log(ctx.request.body.tags.split(","))
|
||||
for(let i in ctx.request.body.tags.split(",")){
|
||||
// console.log(ctx.request.body.tags.split(",")[i])
|
||||
await dbs.add("articletag",{articleid:res.data[res.data.length-1].num_key,tagid:ctx.request.body.tags.split(",")[i]})
|
||||
console.log("")
|
||||
|
||||
}
|
||||
// await dbs.add("articletag",{articleid:res.data[res.data.length-1].num_key,tagid:ctx.query.tagid})
|
||||
})
|
||||
console.log(ctx.request.body)
|
||||
ctx.body = "添加成功"
|
||||
next()
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user