res.locals,req.variable在node.js中返回未定义

时间:2018-11-15 11:52:51

标签: javascript node.js express

我是node.js的新手,正在编写API,但是有一个基本问题。 我试图访问app.js中的值,该值设置为validateSession.js中的res.locals或(req对象),给出了未定义的信息。

这是对中间件的正确使用吗?

如何在app.js中使用中间件结果?

app.js

app.post('/api/JSONSrv',validateSession,function(req,res){
console.log(req.dbResult)
})

validateSession.js

    function validateSession(req,res,next){
        if(someCondition){
           oracledb.getConnection(
                {
                  user          : dbConfig.user,
                  password      : dbConfig.password,
                  connectString : dbConfig.connectString
                },
                function (err, connection) {
                  if (err) { console.error(err.message); return; }
                  var plsql=`BEGIN CREATE_OR_VALIDATE_SESSID(:IN_CORP_ID, :PI_IN_USER_ID, :PI_IN_PASSWORD, :PI_IN_JSONLENGTH,:PI_IN_URL, :PO_IN_DOCKET, :STATUS, :OUT_ERROR_DESC, :OUT_DOCKET);
                  END;`;

            var bindvars = {

             };

               connection.execute(plsql,bindvars,function (err, result) {
                      if (err) {
                        doRelease(connection);
                         return;
                     }
                  console.log(result.outBinds);
                  req.dbResult=result.outBinds;//giving undefined in app.js
                 res.local.dbResult=result.outBinds;//giving undefined in app.js
                  doRelease(connection);
                  });
            });
            }else{
            res.json({
                Error_Desc:'Invalid payload length'
            })
        }
         next();
    }
module.exports.validateSession=validateSession;

1 个答案:

答案 0 :(得分:1)

在致电next()之前,您不必等待查询结果。

将代码重组为类似于以下内容的代码:

if (someCondition) {
  ...
  connection.execute(plsql,bindvars,function (err, result) {
    ...
    doRelease(connection);
    next();
  });
} else {
  next();
}