在箭头函数内,想执行2个行为,但第2个行为却略过

如下示例代码(Javascript):



第1个行为提示给用户,当用户点击提示之后,页面重新定向当前页面了,那自然的,第2个行为自然略过了。

解决办法,就是使用setTimeout写个超时器,过多少秒之后,自动 执行第2个行为。



.then(response => {
    if (response.data.Status) {

        alert("The data already created.");

        /*window.location.href = "/Cust/CustList";*/

        setTimeout(() => {
            window.location.href = "/Cust/CustList";
        }, 500);

    }
    else {
        //do fail coding...


    }
})
Source Code


上图中的500为毫秒。

posted @ 2024-11-02 12:23  Insus.NET  阅读(13)  评论(0编辑  收藏  举报