Home > Software engineering >  How to repeat a function without effecting repeating the token
How to repeat a function without effecting repeating the token

Time:12-18

How do I modify the repeat loop function without it repeating the token variable in the function rowcount()?

function rowcount()
{ 
  var token = getAccessToken();
  var module = "sHistory";
  var rows = 0;
  var go = true;
  var i = 1;
  var data;
  
   
   while (go) {
    data = getRecordsByPage(i,200,token,module);
    
    if (Number(data.info.count) < 200) {
      go = false;
    };
    if ((i) == 0) {
       go = false; 
    }
    rows = Number(rows)   Number(data.info.count);
      i  ;
   
      Logger.log(rows)
      }
      return rows
   }
  
  
function repeatloop()
{
  let counter = 0;

  for(var i = 1; i <= 93; i  )
      {
        {
        Utilities.sleep(10000);
        Logger.log(i);

        counter  = rowcount();
        Logger.log(counter);
        }
      }
      return rowcount().rows;   
  } 

What I am also trying to do is let the count continue because right now it goes in an increment of 2000, but I need it to continue like 200...400..600..800...1000...1200...1400...1600...1800...2000...2200. and it goes on until the loop stops.

CodePudding user response:

You can make the token a global variable like this:

var token;
function rowcount()
{
  var module = "sHistory";
  var rows = 0;
  var go = true;
  var i = 1;
  var data;
  
   
   while (go) {
    data = getRecordsByPage(i,200,token,module);
    
    if (Number(data.info.count) < 200) {
      go = false;
    };
    if ((i) == 0) {
       go = false; 
    }
    rows = Number(rows)   Number(data.info.count);
      i  ;
   
      Logger.log(rows)
      }
      return rows
   }
  
  
function repeatloop()
{
  let counter = 0;
  token = getAccessToken();

  for(var i = 1; i <= 93; i  )
      {
        {
        Utilities.sleep(10000);
        Logger.log(i);

        counter  = rowcount();
        Logger.log(counter);
        }
      }
      return rowcount().rows;   
  }

Or did I understand you wrong?

  • Related