我有一个通用的Javascript代码段,所有客户都会将其添加到他们的网站。这段代码片段提取了一个JS库,它有一些重要的函数,如果及时获取库,应该调用它们。如果未及时获取库,则永远不应调用这些函数。
为了实现这一点,我设置了一个超时,它有一个回调函数来处理它(它根据调用或不调用哪些重要函数来设置一个变量)。现在,它在大多数情况下都能很好地工作,除非客户端的网站已经有一些超时/间隔和非常小的计时器值。 请查看小提琴http://jsfiddle.net/tmckM/37/,以查看问题。
我需要找到一种通用的方法来实现这一点,这样如果及时获取库,那么在任何情况下都不会发生超时。
以下是JSFiddle中使用的代码
//Though the library file is downloaded in time(which can be seen from network tab) but still the timeout fires before the library execution. I need to find a workaround for this issue
var library_timeout = 1000;
//All time values are in milliseconds
function loadLibrary() {
var b = document.createElement('script');
b.src = 'http://yourjavascript.com/35211527623/library.js';
b.type = 'text/javascript';
document.getElementsByTagName('head')[0].appendChild(b);
}
function wasteTime() {
if (!wasteTime.counter) {
wasteTime.counter = 1;
}
else {
wasteTime.counter++;
}
if (wasteTime.counter == 5) {
clearInterval(wasteTimerId);
}
console.warn('Start wasting time');
var initial = Date.now();
while (true) {
if (Date.now() - initial > 1000) {
break;
}
}
console.warn('Stopped wasting time');
}
function startProcess() {
window.process_started_at = Date.now();
console.log('Started the process at timestamp:', process_started_at);
setTimeout(function () {
window.lib_timeout_fired_at = Date.now();
console.log('Library timed out at timestamp:', lib_timeout_fired_at);
console.log('So, though the library file will still download, but the functions in it won\'t be called.');
}, library_timeout);
loadLibrary();
}
//The following line is implemented on user's website.I can't change it.
wasteTimerId = setInterval(wasteTime, 0);//If this line is skipped then library is always executed first and then timeout occurs.
startProcess();
答案 0 :(得分:0)
我在这里看不到问题。 lib加载时间可能不同,wasteTime
js加载可能会有所不同,so can timeouts。如果两者都已安排,浏览器可以完全自由地首先执行加载的脚本或触发超时。
解决方法是根本不使用超时。只需更改
即可if(window.lib_timeout_fired_at)
在您的库脚本中(您已经拥有所有变量):
if (lib_started_at - process_started_at > library_timeout)
当然你可以重命名/加上前缀,所以整体解决方案看起来像
window.lib_timeout_firing_at = Date.now() + 1000;
…
if (Date.now() > lib_timeout_firing_at)