我有一个用户脚本,它每秒刷新一次页面,但是有时它试图刷新的网站出现状态503错误,并且停止了脚本的运行。这意味着脚本将不再尝试每秒刷新一次页面。页面进入状态503错误后,如何保持脚本运行?该错误在控制台中如下所示:

加载资源失败:服务器响应状态为503(服务不可用)

// ==UserScript==
// @name        script
// @namespace   name
// @description example
// @match       *^https://example.com/$*
// @version     1
// @require     https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js
// @grant       GM_xmlhttpRequest
// @run-at document-end
// ==/UserScript==

//*****************************************START OF SET_TIMEOUT
var timeOne = 1000;
var theTime = timeOne;

var timeout = setTimeout("location.reload(true);", theTime);
function resetTimeout() {
clearTimeout(timeout);
timeout = setTimeout("location.reload(true);", theTime);
} //end of function resetTimeout()
//*****************************************END OF SET_TIMEOUT

最佳答案

用户脚本在页面加载时运行,如果页面没有加载200以外的任何状态代码,则它们将不会运行。您可以按照@Hemanth的建议使用<iframe>,但必须打破无限循环,因为<iframe>也会加载用户脚本等。要打破它,只需检查是否在顶部窗口中加载了用户脚本。

if (window == window.top) {
    // Remove everything from the page
    // Add an iframe with current page URL as it's source
    // Add an event to reload the iframe few seconds after it is loaded
}

完整的代码:
(function ($) {
  'use strict';
  var interval = 5000;
  if (window == window.top) {
    var body = $('body').empty();
    var myframe = $('<iframe>')
      .attr({ src: location.href })
      .css({ height: '95vh', width: '100%' })
      .appendTo(body)
      .on('load', function () {
        setTimeout(function () {
          myframe.attr({ src: location.href });
        }, interval);
      });
  }
})(jQuery);

08-27 00:25
查看更多