我是想where条件里面 authorId不等于输入的event.authorId,我下面那样写感觉不对, !event.authorId取非了,感觉真假了,请教大侠怎么解决authorId不等于输入的event.authorId
else if (event.a == 3) {
const doc = await db.collection(‘bbs_list’).where(
_.and([
{
tid : event.tid,
},
{
authorId: !event.authorId,
}
])).update({
data: {
views: _.inc(1),
}
})
return {
doc
}
}