articlejs
This commit is contained in:
parent
7f2fc7b58d
commit
83d7da520a
@ -11,8 +11,21 @@ var articlefind = async (ctx, next) => {
|
|||||||
// 添加文章
|
// 添加文章
|
||||||
var articleadd = async (ctx, next) => {
|
var articleadd = async (ctx, next) => {
|
||||||
let month=parseInt(new Date(Date.now()).getMonth())+1
|
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})
|
// await dbs.add("articletag",{articleid:ctx.query.articleid,tagid:ctx.query.tagid})
|
||||||
console.log(ctx.query)
|
// 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 = "添加成功"
|
ctx.body = "添加成功"
|
||||||
next()
|
next()
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user