【问题标题】:How to pass express arguments to nodejs asynchronous calls如何将快速参数传递给nodejs异步调用
【发布时间】:2017-08-25 02:42:59
【问题描述】:

这是我在快递中面临的问题。 在我的快速中间件的某个地方,我想检查文件是否存在。

 //Setting up express middeleware...
 app.use(f1);
 app.use(f2);
 ...



 function f1(req, res, next) {
   ...
   //Here I want to check if 'somefile' exists...
   fs.access('somefile', callback1, req, res, next);

 }

 //In the callback, I want to continue with the middleware... 
 function callback1(err, req, res, next) {
   if (err) {
     //Report error but continue to next middleware function - f2
     return next();
   }
   //If no error, also continue to the next middleware function - f2
   return next();
 }

 function f2(req, res, next) {

 }

如何将 req、res、next 作为参数传递给 fs.access 的回调? 上面的代码不起作用。我怀疑我需要使用闭包,但如何使用?

看待问题的一种完全不同的方式是:例如,我如何将 fs.access 本身用作快速中间件函数?

【问题讨论】:

  • 我认为最好描述您正在尝试做的事情,因为您目前正在尝试做的事情没有多大意义......

标签: node.js express node-modules


【解决方案1】:

对我来说,这种方法更有意义:

假设您要在 f1 中创建一个中间件,然后有一个用于错误处理的中间件handleError,以及任何其他中间件。

对于f1,您已经在闭包中拥有 req, res,因此您可以在 fs.access 回调中访问。

function f1(req, res, next) {
   fs.access('somefile', (err) => {
     if (err) return next(err);
     // here you already have access to req, res
     return next();
   }
}

function f2(req, res, next) {
   // do some stuff if there is err next(err);
}

function handleError(err, req, res, next) {
   if (err) {
     // handle somehow the error or pass down to next(err);
   }
}

app.use(f1); // you pass down the err |
app.use(f2); //          ------------ |
app.use(handleError); //         <----|

【讨论】:

    猜你喜欢
    • 1970-01-01
    • 1970-01-01
    • 2014-04-20
    • 2012-12-14
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    相关资源
    最近更新 更多