在onUnload卸载页面调上一页方法
onUnload() {
var pages = getCurrentPages(); // 当前页面
var beforePage = pages[pages.length - 2]; // 前一个页面
if (beforePage.route == 'genXian/tutorship/tutorshipList/index') {
beforePage.handleListData()这里是上一页的方法
}
},
这个方法是获取接口最新数据
handleListData(){
let that= this
that.setData({
listData: res.data,把数据setData,
},()=>{
that.handleTime()然后在callback这个方法
})
}
问题是:当卸载页面已经调handleListData这个方法接口也调取成功数据也setData成功,但是hadleTime这个方法没有去调
微信版本号:8.0.34
苹果:12 ios:16.1.1
handleListData方法没有入参吗,res是哪里来的?