2017-07-18 269 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