我有一个使用node,express和mongoose的api。当我使用邮递员调用api时,将返回模型中的_id值。当我使用基于angularjs和ionic的Web应用程序调用api时,_id为null。在两种情况下都将保存记录。
我尝试在angularjs服务中设置标题。如果获取所有记录,则ID返回。我尝试设置和删除猫鼬模型和角度模型中的_id
// api method
public save = async (req:Request, res:Response): Promise<any> => {
let newDfr = new DfrModel(req.body);
try {
const insertDFR = await newDfr.save({ validateBeforeSave: false});
if (!insertDFR) {
return res.status(404).send({
success: false,
message: 'Error Saving DFR',
data: null
});
}
console.log (newDfr);
res.status(200).send({
success: true,
data: insertDFR
});
} catch (err) {
res.status(500).send({
success: false,
message: err.toString(),
data: null
});
}
}
// Service Method on Service Class
public saveDFR(dfrModel: DfrModel) {
return this.httpClient.post(environment.apiURL + '/dfrs', dfrModel);
}
// Method on component
async onSaveForm() {
if (this.form.value.dfrStatus == null) {
this.form.value.dfrStatus = 'Open';
}
const loader = await this.loadingController.create({
message: 'Saving DFR, one moment please.',
animated: true
}).then(loaderElement => {
loaderElement.present();
this.dfrService.saveDFR(this.form.value).subscribe( val => {
loaderElement.remove();
this.dfrService.showNotification('DFR Template Saved');
}, error => {
loaderElement.remove();
this.showAlert('Error Saving DFR. Please ensure all fields are valid');
});
});
}
//客户端模型
export class DfrModel {
constructor (
public _id: string,
public projectName: string,
public projectNumber: string,
){}
}
答案 0 :(得分:0)
自从我发送form.value以来,附加了一个值为null的_id键。 _id也已附加到我的模型中。在mongodb中保存新文档时,该_id不应出现在有效负载中。因此,我只删除正在提交的_id键/值对。
这似乎是处理情况的一种奇怪方法,我认为我的设置不正确。如果有人对提交新文档有更好的解决方案,请在下面发表评论。谢谢