0
가 좀 문제가 작동하지 삭제할 경우 은 "iduser을"유효하지 않거나 유효하고 객체 수정 문서에서 삭제되지 "수정 삭제"하고 계정 문서MongoDB를 풀/배열 에 항상 API의 결과를 객체를 삭제하기로
이 내 주요 의사
let Account = new Schema({
firstName : {type : String, required : true},
lastName : String,
email : {type : String, required : true},
profilePicture : {type : String, required : true},
gender : {type : String, required : true},
id : {type : String, required : true},
location : String,
birthday : Date,
experiences : [Number],
achievements : [Number],
modifications : {type : [Schema.Types.ObjectId], ref : 'Modification'}
},{usePushEach: true});
하고 난 싶어이 배열 객체는
let modificationSchema = new Schema({
desc : {type : String, required : true},
make : {type : String, required : true},
type : {type : String, required : true},
photo : {type : String, required : true},
postDate : {type : Date, required : true},
likes : {type : [Schema.Types.ObjectId], ref : 'Like'},
comments : {type : [Schema.Types.ObjectId], ref : 'Comment'}
},{usePushEach: true});
삭제 0
및 :)
가능한 복제를 사용할 수 있습니다 - 많은 참조 - 몽구스] (https://stackoverflow.com/questions/32674280/removing-one-one-and-one-many-references-mongoose) – Veeram