1
MongoDB에서 NodeJS로 문서를 채우려고 했으므로 Schema와 post req를 작성했습니다.오브젝트가있는 몽구스 스키마
var gameSchema = new Schema({
title: String,
developer: {
name: String,
email: String
},
isBroadcasted: Boolean
});
그래서 나는 REQ이 스키마 감사를 채우려. 나는 그것을 실행할 때
router.post('/android', auth, function(req, res){
// Create a new instance of the Game model
var game = new Game();
game.title = req.body.title;
game.developer.name = req.body.developer.name;
game.developer.email = req.body.developer.email;
그러나이 오류 메시지가 "형식 오류 : 부동산의 정의의 '이름'읽을 수 없습니다"가 developer.name가 존재하기 때문에 왜 이해가 안하지만
합니다.
고마워요! 그것은 작동합니다! –