使用Promise ,当 layer.msg(‘查询成功’) 这个方法执行结束后,下面代码才会执行
let thas = this
async function showMessage() {
await new Promise(resolve => layer.msg('查询成功', resolve));
// 这里的代码将在 layer.msg 执行结束后执行
thas.isGuarantee = true;
thas.InsurancePolicyInfo = res.data;
thas.ifTimeClose();
}
showMessage();
注意事项:Promise内如果使用 this , this无法访问到Vue实例 ;
解决方法:
1.你需要在外部定义全局变量 值是this, 在promise内使用这个变量
2.直接调用Vue组件实例
描述:箭头函数不会改变 this
的指向,它会捕获外部上下文的 this
。因此,在箭头函数内部,this
会指向 Vue 组件的实例
async showMessage() {
await new Promise(resolve => l服务器托管网ayer.msg('查询成功', resol服务器托管网ve));
this.isGuarantee = true;
this.InsurancePolicyInfo = res.data;
this.ifTimeClose();
}
// 在 Vue 组件中调用 showMessage
this.showMessage();
服务器托管,北京服务器托管,服务器租用 http://www.fwqtg.net
相关推荐: 干货|EasyMR 基于 Kubernetes 应用的监控实践
在之前的内容中,我们深入探讨了 EasyMR 如何利用 Kubernetes 进行部署。大家已经了解到,在 EasyMR 的整体架构中,我们使用 Prometheus 进行节点和服务监控数据的采集、查询和存储。同时,Grafana 作为强大的可视化工具,将 P…