我想使用名为token
的字段发布请求。这是我的猫鼬模式
const UserSchema = mongoose.Schema({
name: {
type: String
},
email: {
type: String,
required: true,
unique: true
},
username: {
type: String,
required: true,
unique: true
},
password: {
type: String,
required: true
},
phone: {
type: String
},
resetPasswordToken: {
type: String
},
resetPasswordExpires: {
type: Date
}
});
这是我的user.js
路线文件
router.put('/reset/:token', function(req, res) {
console.log('listening');
User.findOneAndUpdate(
{resetPasswordToken:req.params.token},
{
password: req.body.password,
resetPasswordToken: undefined,
resetPasswordExpires: undefined
},
function(err,user) {
if(err) {
console.log(err + 'is here');
} else {
res.json(user);
}
}
);
});
这是我发送`POST请求的地方。
resetPassword(passwordData) {
let headers = new Headers();
console.log(passwordData);
headers.append('Content-Type','application/json');
return this.http.put('http://localhost:3000/api/reset/'+passwordData.token,passwordData,{headers: headers})
.map(res => res.json());
}
没有任何反应,我无法在cmd中看到listening
。对于一个用户,我已经具有
"resetPasswordToken" : "2a287acacf7d5e98de9a158c8be82744ef0302f9"
我可以使用邮递员进行更新,但是无法使用代码进行更新。
答案 0 :(得分:0)
如果您能够通过邮递员而不是客户来处理请求,则有两种可能性:
CORS:在处理所有请求之前,请使用以下代码
app.use((req,res,next)=>{
res.header("Access-Control-Allow-Methods", "GET, PUT, POST, DELETE");
next()
})
使用x-http-method-override标头:由于有时不允许放置或删除请求。 这可以在处理请求(click here for the node module used)之前在客户端或服务器中发送时完成