我如何将结果查询结果存储到Node.js中的“公共”变量?

时间:2018-10-25 14:38:30

标签: javascript node.js

如何将结果数据存储到可以在外部使用的变量中?

我的查询就是这样

let array = [];

const a = 0,
      b = 1;

 if  ( a < b)  {
   const result = await DataClass.findOne({feld:"Word"}).exec();
   array.push(result);
}

// continue ....

console.log(array)

或这样:

let array = [];

const a = 0,
      b = 1;

 if  ( a < b)  {
   await DataClass.findOne({feld:"Word"}).then( result =>{
    array.push(result);
   });
}

// Code continue ....

console.log(array)

如何将结果数据存储到可以在外部使用的变量中?

1 个答案:

答案 0 :(得分:0)

您是否尝试过环境变量? 在.env

ARRAY=''

并在您的文件中

process.env.ARRAY = array