login.service.ts:


setTimeout(()=>{
           this._auth.refreshToken();
     }, 5000);



  session.service.ts:


refreshToken(){
        var r = confirm("Your Session is going to Expire.Click 'OK' to Continue or Cancel to Logout");
            if (r == true) {
              return true;
            } else {
               this.logout();
               return false;
            }
      }


时间间隔完成后,如何关闭确认弹出窗口。

最佳答案

打开setTimeout对话框时,不会处理confirm事件。这与文档at WHATWG一致:


  
  暂停直到用户做出正面或负面的回应。
  


相同的规范explains what "Pause" means


  
  等待直到达到条件目标。当用户代理具有暂停的任务时,相应的事件循环不得运行其他任务,并且当前正在运行的任务中的任何脚本都必须阻止。
  


因此,您将需要实现自己的非阻塞机制,或者使用提供这种功能的众多库之一。

这是一个使用Promise机制的不带库的简单实现:



function myConfirm(msg, timeout) {
    const inputs = [...document.querySelectorAll("input, textarea, select")].filter(input => !input.disabled);
    const modal = document.getElementById("modal");
    const elems = modal.children[0].children;

    function toggleModal(isModal) {
        for (const input of inputs) input.disabled = isModal;
        modal.style.display = isModal ? "block" : "none";
        elems[0].textContent = isModal ? msg : "";
    }

    return new Promise((resolve) => {
        toggleModal(true);
        elems[1].onclick = () => resolve(true);
        elems[2].onclick = resolve;
        setTimeout(resolve, timeout);
    }).then(result => {
        toggleModal(false);
        return result;
    });
}

function refreshToken(){
    var r = myConfirm("Your session is about to expire. Click OK to continue or Cancel to log out. Defaulting to Cancel after 4 seconds...", 4000);
    return r.then(ok => {
        if (ok) {
            console.log("extending the session");
            // do whatever is needed to extend the session
        } else {
           console.log("logging out");
           //this.logout();
        }
        return ok;
    });
}

// Demo: let the popup appear after 1 second:
setTimeout(refreshToken, 1000);

#modal {
  display: none;
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background: rgb(0,0,0);
  background: rgba(0,0,0,0.4);
  font-family: "ms sans serif", arial, sans-serif;
}

#modal > div {
  position: fixed;
  padding: 10px;
  width: 280px;
  left: 50%;
  margin-left: -150px;
  top: 50%;
  margin-top: -50px;
  background: white;
  border: 2px outset;
}

<div id="modal">
    <div>
        <div></div><br>
        <button>OK</button>
        <button>Cancel</button>
    </div>
</div>

<p> This is a test page with a test input </p>
<input>





因此,您需要在HTML中添加CSS和<div id="modal">元素。然后使用2个参数调用函数myConfirm


要显示的文字
超时(以毫秒为单位),在该超时后,用户就像单击“取消”一样


myConfirm函数返回一个promise,因此您必须等待其解决,然后才能知道并处理用户响应。例如,使用then执行您的自定义代码。

关于javascript - setTimeout()完成后,自动关闭确认框,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/55573390/

10-09 22:01