1. 先清空数据再请求
b页面返回a页面,在a页面刷新数据
submits() {
this.index = 0
uni.navigateBack({
delta: 1
})
onShow () {
this.getlist()
}
onShow () {
// 这样数据就会刷新了
this.list = [] // 先清除数据
this.getlist()
}
2. getCurrentPages()
https://www.cnblogs.com/vicky123/p/12856011.html