我想找出模式中特定用户有多少张表
async punishmentCount(user) {
let arr = []
await punishments.find({user: user},
async(err,res) => {
res.map(x => {
arr.push(x.case)
})
})
return arr.length
}
但我知道.length是我登录此 console.log(typeof punishmentCount("3534"))
时的数字
返回 *object
*我想输入一个数字
我该如何解决?