Mongoose는 Mongodb의 findAndModify 메서드를 지원합니까? Mongoose를 사용하여 findAndModify를 사용하여 필드를 원자적으로 증가시키고 싶습니다. 그러나 아래 코드는 "TypeError: Object # have no method 'findAndModify'" 오류를 발생시킵니다. // defining schema for the "counters" table var tableSchema = new Schema({ _id: String, next: Number }); // creating table object for the counters table var counters_table = mongoose.model('counters', tableSchema); var t..