javascript node.js next()

后端 未结 3 581
日久生厌
日久生厌 2020-11-27 10:31

I see a lot of use next in node.js.

What is it, where does it come from? What does it do? Can I use it client side?

Sorry it\'s used for example

3条回答
  •  被撕碎了的回忆
    2020-11-27 10:57

    This appears to be a variable naming convention in Node.js control-flow code, where a reference to the next function to execute is given to a callback for it to kick-off when it's done.

    See, for example, the code samples here:

    • http://blog.mixu.net/2011/02/02/essential-node-js-patterns-and-snippets/

    Let's look at the example you posted:

    function loadUser(req, res, next) {
      if (req.session.user_id) {
        User.findById(req.session.user_id, function(user) {
          if (user) {
            req.currentUser = user;
            return next();
          } else {
            res.redirect('/sessions/new');
          }
        });
      } else {
        res.redirect('/sessions/new');
      }
    }
    
    app.get('/documents.:format?', loadUser, function(req, res) {
      // ...
    });
    

    The loadUser function expects a function in its third argument, which is bound to the name next. This is a normal function parameter. It holds a reference to the next action to perform and is called once loadUser is done (unless a user could not be found).

    There's nothing special about the name next in this example; we could have named it anything.

提交回复
热议问题