在箭头函数内,想执行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... } })
上图中的500为毫秒。