When to use Next () and return next () in node. js

Source: Internet
Author: User

Some people always write return next () are to ensure, the execution stops after triggering the callback.

If you don't have it, you risk triggering the callback a second time later, which usually have devastating results. Your code is fine as it was, but I would rewrite it as:

function (req, res, next) {    var id = req.params.id;     if (! ID)         return next ();     // Do something});

It saves me a indentation level, and when I read the code again later, I ' m sure there is the no-on-next is called twice.

Http://stackoverflow.com/questions/16810449/when-to-use-next-and-return-next-in-node-js

When to use Next () and return next () in node. js

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.