我正在使用MEAN(MongoDB,express.js,angular和node.js)。 我创建了一个有角度的表单,在MongoDB中提交表单字段值。 以这种形式,如果我单击edit,则有一些字段将获取数组值,它将检索所有先前的值,然后我可以传递一个新值,该值应作为数组的下一个索引值。 因此,我尝试创建一个有角度的API以在数组中添加/推送新值。
onEstimateAdd(form :NgForm){
if(form.value.estimate == ""){
this.datamodelService.postDatamodel(form.value.estimate).subscribe((res) =>{
this.resetForm(form);
});
}
else{
this.datamodelService.putDatamodel(form.value.estimate).subscribe((res) => {
this.resetForm(form);
})
}
有人可以告诉我可以实现的正确API,谢谢