2017-07-18 255 views
0

我想在其他文件中使用var值,如果我在我的代码的开始定义它会引发错误“无法读取null属性'统计'”,所以我尝试使用全局变量但这没有帮助,在我的其他文件中总是得到空值。值得到未定义控制器nodejs

我需要在其他文件中获取listaLive,listaRepeated和listaPasserBy值,我将这些数据发送给它们,然后插入到db(AgregateController)中。

当时我的代码是:

ProbingController.prototype.pollingAllDevices = function() { 
    createLog('info', __dirname, __filename.slice(__dirname.length + 1, -3), null, 'probing', 'inicio'); 
    var numDevices = 1; 
    return Database.Devices.getDevices().then(function (devices) { 
     return new Promise(function (resolve, reject) { 
      async.each(devices, function (device, callback) { 
       logger.info('WSController-Service', 'probing', 'getRadioInfo --> ', device.id, ' :: ', numDevices++, '/', devices.length); 
       //stats ubus call wsniffer stats pie chart 
       //list ubus call wsniffer list 
       //listex ubus call wsniffer listex 

        var obj = { 
         "id": uuid.v4(), 
         // "timestamp": new Date().getTime(), 
         "device_id": device.id, 
         "data":{ 
          "stats":{ 
          }, 
          "list":{ 
          } 
         } 
        }; 

        var allPromises=[];     

        allPromises.push(Controllers.Gps.getRadioInfo('wsniffer', 'stats', {}, device)); 
        allPromises.push(Controllers.Gps.getRadioInfo('wsniffer', 'list', {}, device)); 

        Promise.all(allPromises).then(function(values){ 
         console.log("probing values -> "+device.id+" "+ JSON.stringify(values));  
         for(var j=0;j<values.length;j++){ 
          if(values[j]!=null){ 
           console.log("stats "+device.id+" --> "+ values[0]["stats"]); 
           console.log("list "+device.id+" --> "+ values[1]["list"]); 
           if(values.stats["stats"]!=undefined){ 
            obj.data.stats = values[0]["stats"]; 
           } 
           if(values.stats["list"]!=undefined){ 
            obj.data.list = values[1]["list"]; 
           }        
          } 
         } 
         var countRepetidos=0; 
         if(obj["list"]!=undefined && obj["list"].length>0){      

          var aux = obj["list"]; 
          for(var j=1;j<aux.length;j++){ 
           var tmp = aux; 
           for(var k=1;k<tmp.length;k++){ 
            if(j!=k){ 
             if(aux[j] === tmp[k]){ 
              countRepetidos++; 
              aux.splice(k,1); 
             } 
            } 
           } 
          } 
         } 

         var dataLive = []; 
         var dataRepeated= []; 
         var dataPasserBy = []; 

         var now = Date.now(); 

         var listaLive=[], listaRepeated=[], listaPasserBy=[]; 

         if(obj.data.stats!=undefined){ 
          dataLive = [obj.data.stats.since, obj.data.stats.live]; 
          dataPasserBy = [obj.data.stats.since, obj.data.stats.passerby]; 
         } 

         dataRepeated = [obj.data.stats.since, countRepetidos]; 


         createLog('debug', __dirname, __filename.slice(__dirname.length + 1, -3), device.id, 'probing', 'obj', obj); 

         listaLive.push(dataLive); 
         listaRepeated.push(dataRepeated); 
         listaPasserBy.push(dataPasserBy); 

         Controllers.Agregate.agregateData("probing_live", 5 * 60, listaLive, dbHistConnectionString, device.id, device.network_id, device.organization_id, ["time","clients"]); 
         Controllers.Agregate.agregateData("probing_repeated", 5 * 60, listaRepeated, dbHistConnectionString, device.id, device.network_id, device.organization_id, ["time","clients"]); 
         Controllers.Agregate.agregateData("probing_passerBy", 5 * 60, listaPasserBy, dbHistConnectionString, device.id, device.network_id, device.organization_id, ["time","clients"]); 
         Database.Probing.addRow(obj); 

         global.listaLive = listaLive; 
         global.listaRepeated = listaRepeated 
         global.listaPasserBy = listaPasserBy 


        }).catch(function (e) { // error handling 
         console.log("probing - promiseall ",device.id,e); 
         if(values==null){ 
          console.log('probing values null ---->', device.id); 
         } 
         createLog('error', __dirname, __filename.slice(__dirname.length + 1, -3), device.id, 'probing', 'no promise all',e); 
         return callback(e); 
        }); 


      }, function (error) { 
       if (error) { 
        createLog('error', __dirname, __filename.slice(__dirname.length + 1, -3), null, 'probing', 'stops polling?!', error); 
        return reject(error); 
       } 
       createLog('info', __dirname, __filename.slice(__dirname.length + 1, -3), null, 'probing','All Devices Processed'); 
       return resolve(); 
      }); 
     }).catch(function (e) { 
      console.log("probing 1--> ",e); 
      createLog('error', __dirname, __filename.slice(__dirname.length + 1, -3), null, 'probing','promise',e); 
     }); 
    }).catch(function (e) { 
     console.log("probing 2--> ",e); 
     createLog('error', __dirname, __filename.slice(__dirname.length + 1, -3), null, 'probing','getDevices',e); 
    }); 

} 

日志:

3|wscontro | probing stats { since: 1500454284751, 
3|wscontro | probing list [ '00:05:ca:e4:85:39', 
3|wscontro | probing dataStatsSince --> 1500454284751 
3|wscontro | probing dataStatsLive --> 236 
3|wscontro | probing dataStatsPasserBy --> 134 
3|wscontro | probing listaLive --> [ [ 1500454284751, 236 ] ] 
3|wscontro | probing listaRepeated --> [ [ 1500454284751, 0 ] ] 
3|wscontro | probing listaPasserBy --> [ [ 1500454284751, 134 ] ] 



3|wscontro | [2017-07-18 15:07:42.834] - debug: /opt/wscontroller/wscontroller-service/scripts/agregate AgregateController b2aaba26-dea0-4b2e-9b6e-6fe91c566ee9 recursviva data {"id":"c0a2941f-e617-4c14-95de-4506565b28d1","agregation_period":300,"medium":[0],"maximum":[0],"minimum":[0],"timestamp":[null,0],"sum":[null],"type":"probing_repeated","device_id":"b2aaba26-dea0-4b2e-9b6e-6fe91c566ee9","network_id":"7e709c63-45c5-4716-b596-ece3468b25f9","organization_id":"ce4b69af-bdce-4f1b-ba71-dd03544205d5","labels":["time","clients"]} 

其中, “时间戳” 和 “和” 上listaLive,listaRepeated和listaPasserBy内的agregate值。

3|wscontro | probing timestamp [ undefined, 0 ] 
3|wscontro | probing sum undefined 

我需要的资源列表的这个值上agregator ...

+0

你在哪里试图在不同的文件中使用变量?哪条线给你这个错误?如果这是Node.js,则不要使用全局变量。使用模块。 –

+0

我正在使用注释行//obj["data"].stats=statsData["stats“]来使用这些数据,它会引发给定的错误,但是如果填充了错误,则会出现错误再次出现了解......当仍然存在时空引发错误...我需要这个数据在AgregateController明白..但在这个文件中传递的数据是空的... – ricardol

回答

0

你可以分享你想要使用exports对象的任何值。

所以尝试使用导出导出您的var变量。例如:

**helper.js** 

const hello = 'hello world' 
exports.hello = hello 

**index.js** 

const example = require('./helper.js').hello 
console.log(example) //Will show 'hello world' 
+0

我明白..如果我使用决心我不能传递值?没有任何办法吗? :\ http://plnkr.co/edit/telrz9HAdVEwq18pJ5js?p=预览我的代码在这里 – ricardol

+0

我想我误解了你的问题。如果您使用解决方案使用promise,则可以传递所需的任何数据。一旦你在其他文件中调用你的诺言,'''then'''方法肯定会跟随你的变量。在这里你有一些文件,可以帮助你在这个https://developer.mozilla.org/en/docs/Web/JavaScript/Reference/Global_Objects/Promise/resolve – LuisPinto

+0

我试图做的代码解析(listaLive)和什么都没有在其他文件发生......我该怎么办? http://plnkr.co/edit/telrz9HAdVEwq18pJ5js?p=预览我的代码已更新 – ricardol