0

我正在制作一个简单的注册登录应用程序来练习快速反应。目前我正在验证电子邮件是否已存在于服务器中。我想要做的是当电子邮件已经存在时,我想发送某种数据,例如您如何将数据发送到 ejs 等模板引擎。但是这一次我想要它做出反应我会怎么做呢?

server.post('/api/register', validateMiddle, (req, res) => {
    db.collection('users').findOne({
        email: req.body.email
    }, (err, succ) => {
        if(err) throw err;

        if(succ){
             // If the same email is found i want to send this kind of data but i want to render it using react
            res.json({message: 'Email already exists!'});
        } else {
            db.collection('users').save(req.body, (err, succ) => {
                if(err){
                    throw err;
                } else {
                    console.log('Success');
                }
            })
        }
    })
})
4

1 回答 1

0

当您反应应用程序向您的 /api/register 端点发出 POST 请求时,您的反应应用程序上的响应应该会收到{message: 'Email already exists!'}.

于 2018-03-14T09:17:42.047 回答