1
options.votes是一個數組。Mongoose:如何更新從變量索引數組中的值?
此代碼:
Poll.findOneAndUpdate({title},{$inc:{'options.votes.0':1}}
我需要爲一個變量替換0。
這不起作用:
const query = 'options.votes.'+variable
Poll.findOneAndUpdate({title},{$inc:{query:1}}
感謝您的幫助