我试图调用一个函数两次,但是使用当前代码,我跳过了 getPoints() 函数,并调用了 setInterval 中的 getPoints() 函数。我试图让它调用 getPoints() 函数,然后调用 setInterval 中的那个。
var background;
// background page
background = chrome.extension.getBackgroundPage();
// get totals
getPoints(background.localStorage.points);
// update every 30 seconds
setInterval(function() {
console.log("func");
getPoints(background.localStorage.points);
}, 30000);