Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

Why is the following not working?

res.send({
    successMessage: 'Task saved successfully.'
});
res.redirect('/');

I basically need the successMessage for AJAX requests. The redirect is necessary when the request is a standard post request (non-AJAX).

The following approach doesn't seem to be very clean to me as I don't want to care about the frontend-technology in my backend:

if(req.xhr) {
    res.contentType('json');
    res.send({
        successMessage: 'Aufgabe erfolgreich gespeichert.'
    });
} else {
    res.redirect('/');
}
See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
940 views
Welcome To Ask or Share your Answers For Others

1 Answer

You can use a status code to indicate that your task was saved and then redirect. Try this:

res.status(200);
res.redirect('/');

OR

res.redirect(200, '/');

Because AJAX knows success or failure codes, so for example if you'll send 404, AJAX success function won't execute


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
...