下拉刷新, 如何确保异步全部获取数据之后在去操作分页?// 下拉刷新refresh() { // getOrderList方法是重新渲染列表
this.getOrderList(); // 根据this.orderList.length的长度来判断是否全部异步获取完数据, 因为之前已经获取过数据, 所以根据长度是不对的
if (this.orderList.length > 0) {
console.log('this.orderList', this.orderList); this.$toast('刷新成功'); this.isLoading = false;
}
}
添加回答
举报
0/150
提交
取消