Skip to content Skip to sidebar Skip to footer

How To Pass The Dynamic Variable To Setinterval Method

i want to refresh/reload the method in every 30 seconds. but im not able to send the variable data to another function i.e setInterval.how to pass variable in the setInterval metho

Solution 1:

you can do it in various way,

example:

//set datawindow.deviceId=Id

and use it in settimout

setInterval(function () {
            $scope.getPIRData(window.deviceId);//unable to pass id here
        }, 30000)

but you can declare any global variable of the settimeout outer scope, then that variable will be available into the settimeout call back function, because then it will be treated as Closures

Solution 2:

Courtesy of @tvanfosson:

You probably want to have a function that creates the interval timer for you. Pass in the parameter to the function so its value is captured in the function closure and retained for when the timer expires.

function createInterval(f,dynamicParameter,interval) { setInterval(function() { f(dynamicParameter); }, interval); }

Then call it as createInterval(funca,dynamicValue,500); Obviously you can extend this for more than one parameter. And, please, use more descriptive variable names. :)

Post a Comment for "How To Pass The Dynamic Variable To Setinterval Method"