在这里,我想更新MongoDB数据库中的密码字段。我必须基于称为电子邮件的字段来搜索特定文档。电子邮件与该特定文档密码字段匹配的位置应更新。这是我的代码。
resetPassword(passwordData) {
let headers = new Headers();
headers.append('Content-Type','application/json');
return this.http.put('http://localhost:3000/api/forgotpassword/'+passwordData.emailId,passwordData,{headers: headers})
.map(res => res.json());
}
此代码来自user.js
路线
router.put('/forgotpassword/', function(req,res) {
});
该如何操作?有人可以帮我编码吗?