const _ = db.command
db.collection(
'collection'
).doc(docId).update({
data: {
// 这里的 key 可以很强大的,试试这样呢
'comment[0].goodnum'
: _.inc(1)
}
})