0
을 절약하고 난 내가 잘못하고있는 무슨 빈 배열을 가지고 몽구스와 함께하지만 수익에 삽입하려고 :몽구스,</p> <p>내 스키마를 내가 배열을 빈 배열
console.log(req.body.type); //here i have something like ["Teste1","Teste2"]
let post = new Post({
name: req.body.descricao,
desc: req.body.desc
type: req.body.type
});
post.save((err, model) => {
if (err) console.log(err);
if (model) console.log(model); //ALL INSERTED but array is just type:[]
})
게시물을 저장하는 동안 모델 인수가 없습니다. –