为什么提示_.pull is not a function?
const _ = db.command
db.collection('reply').doc(id).update({
data: {
thumbUp: _.pull(this.data.openid)
}
})
为什么提示TypeError: _.pull is not a function
const _ = db.command
db.collection('reply').doc(id).update({
data: {
thumbUp: _.pull(this.data.openid)
}
})
为什么提示TypeError: _.pull is not a function