时间:2019-05-05 来源:小程序工厂
黄***:
求解决方案
J***:
木有,你有的话可以说一下
微信小程序怎么确认公众号迁移是否完成?
黄***: 在onShow里面,通过getCurrentPages()获取当前页面对象,重新获取数据后,通过setData去重新赋值。可以通过在app里面定义一个全局的数组。来记录返回到当前页面的参数是什么
例: onload 里面 wepy.$instance.globalData.postIdList.push(option.postId) onunload里面 wepy.$instance.globalData.postIdList.splice(wepy.$instance.globalData.postIdList.length - 1, wepy.$instance.globalData.postIdList.length)onshow里面 let postId = wepy.$instance.globalData.postIdList[wepy.$instance.globalData.postIdList.length - 1] base.getCurrentPage().setData() 复杂了一些,大概就这样。