使用MEAN堆栈中的字段更新数据

时间:2018-07-05 06:48:08

标签: javascript node.js mongodb mongoose mean-stack

在这里,我想更新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) {

});

该如何操作?有人可以帮我编码吗?

0 个答案:

没有答案