J
J
Jiakki-js2015-05-18 13:17:53
Express.js
Jiakki-js, 2015-05-18 13:17:53

Can't set headers after they are sent?

Good day!
there is a piece of code

app.post 'auth', (req, res, next) ->
    if app.locals.auth
        res.redirect '/'
        do next


And the combination of res.redirect '/' and do next gives an error
. What can I do?
thanks in advance

Answer the question

In order to leave comments, you need to log in

1 answer(s)
T
Timur Shemsedinov, 2015-05-18
@Jiakki-js

If you do a redirect, then next is no longer needed. Middleware chains are worth it, that you need to transfer further only if the request has not yet been processed.

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question