我在环回中使用方法Users.on(' resetPasswordRequest')来检索密码
Users.on('resetPasswordRequest', function (info) {
var html = 'abcxyz';
Users.app.models.Email.send({
to: info.email,
from: 'abc@gmail.com',
subject: 'Password reset',
html: html
}, function (err ,email) {
if (err) return console.log('> error sending password reset email');
console.log('> sending password reset email to:', info.email);
});
});
如何发送为客户端格式化的JSON?
答案 0 :(得分:0)
您必须向User
模型添加remote hook。我建议使用extending内置用户模型。
从那里,您可以访问ctx.res
ExpressJS响应对象。您可以根据需要更改响应对象。