保存到数据库时忽略字段

时间:2017-12-19 03:53:32

标签: mongodb angular express

在将数据保存到数据库时,将忽略字段profilepicpath和resume。它下面的所有其他字段都被保存,只有那两个被忽略了。使用的数据库:MongoDB。

var infoField = {
  profilepicpath: this.profilePicName,
  resume: this.resumeName,
  name: firstName + ',' + lastName,
  gender: optradio,
  address: { primaryaddress: primaryaddress, city: city, district: 
           district},
  dob: { year: this.userDate[0], month: this.userDate[1], day: 
       this.userDate[2] },
  skillSet: userSkillSets,
  userType : '1'
} 

当我控制infoField profilepicpath并恢复两者时,但是一旦它被发送到数据库,那么这两个字段将被忽略。

0 个答案:

没有答案