如何在 tampermonkey 中捕获状态 503

fro*_*sty 5 javascript error-handling settimeout http-status-code-503 tampermonkey

我有一个每秒刷新页面的用户脚本,但有时它尝试刷新的网站会遇到状态 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
Run Code Online (Sandbox Code Playgroud)

Mun*_*nna 1

用户脚本在页面加载时运行,如果页面根本没有加载除 200 之外的任何状态代码,它们将不会运行。您可以<iframe>按照 @Hemanth 建议使用,但必须打破无限循环,因为也会<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
}
Run Code Online (Sandbox Code Playgroud)

完整代码:

(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);
Run Code Online (Sandbox Code Playgroud)